All Projects → hrbrmstr → Markdowntemplates

hrbrmstr / Markdowntemplates

Licence: other
✅🔻 A collection of alternate R markdown templates

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Markdowntemplates

Summarytools
R Package to Quickly and Neatly Summarize Data
Stars: ✭ 390 (+35.89%)
Mutual labels:  markdown, rmarkdown, rstats
Trackmd
Tools for tracking changes in Markdown format within RStudio
Stars: ✭ 89 (-68.99%)
Mutual labels:  markdown, rstats
Gluedown
Wrap R vectors in markdown syntax
Stars: ✭ 88 (-69.34%)
Mutual labels:  markdown, rstats
heddlr
Bring a functional programming mindset to R Markdown document generation
Stars: ✭ 14 (-95.12%)
Mutual labels:  rmarkdown, rstats
Xaringan
Presentation Ninja 幻灯忍者 · 写轮眼
Stars: ✭ 1,129 (+293.38%)
Mutual labels:  markdown, rmarkdown
Beautifyr
RStudio addin for formatting Rmarkdown tables
Stars: ✭ 77 (-73.17%)
Mutual labels:  markdown, rmarkdown
Rmarkdown
Dynamic Documents for R
Stars: ✭ 2,319 (+708.01%)
Mutual labels:  markdown, rmarkdown
QuickLookR
macOS QuickLook plugin for R save(), saveRDS() & feather files
Stars: ✭ 41 (-85.71%)
Mutual labels:  rmarkdown, rstats
rmd4sci
Rmarkdown for Scientists
Stars: ✭ 113 (-60.63%)
Mutual labels:  rmarkdown, rstats
tikz favorites
collection of favorite TikZ graphics
Stars: ✭ 62 (-78.4%)
Mutual labels:  rmarkdown, rstats
Samples Rmarkdown Metropolis
RMarkdown with Metropolis/Mtheme for Beamer
Stars: ✭ 51 (-82.23%)
Mutual labels:  markdown, rmarkdown
rmd2jupyter
Convert Rmd (rmarkdown) to ipynb (Jupyter notebook)
Stars: ✭ 17 (-94.08%)
Mutual labels:  rmarkdown, rstats
Crisscross
A Markdown-centric template engine for batch offline document generation.
Stars: ✭ 18 (-93.73%)
Mutual labels:  markdown, rmarkdown
Details
R Package to Create Details HTML Tag for Markdown and Package Documentation
Stars: ✭ 83 (-71.08%)
Mutual labels:  markdown, rmarkdown
Jupytext
Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts
Stars: ✭ 4,969 (+1631.36%)
Mutual labels:  markdown, rmarkdown
Binb
Binb is not Beamer
Stars: ✭ 160 (-44.25%)
Mutual labels:  markdown, rmarkdown
Countdown
⏲ countdown timer for R Markdown slides and HTML docs
Stars: ✭ 110 (-61.67%)
Mutual labels:  rmarkdown, rstats
Postcards
💌 Create simple, beautiful personal websites and landing pages using only R Markdown.
Stars: ✭ 208 (-27.53%)
Mutual labels:  rmarkdown, rstats
githubdashboard
#rstats github flexdashboard
Stars: ✭ 40 (-86.06%)
Mutual labels:  rmarkdown, rstats
workshops-setup cloud analytics machine
Tips and Tricks to setup a cloud machine for Analytics and Data Science with R, RStudio and Shiny Servers, Python and JupyterLab
Stars: ✭ 12 (-95.82%)
Mutual labels:  rmarkdown, rstats

output: html_document: keep_md: true md_document: variant: markdown_github

Build Status

A package of R markdown templates and knitr knit engine replacments

These are a set of alternate R markdown templates that do not use Bootstrap and do not include or rely on jQuery. These are primarily here for demonstration purposes but are also useful in and of themselves (it's always good to have choices). If you have a particular framework you like and it's not here, file an issue and I'll add it.

  • bulma (output: markdowntemplates::bulma) uses the Bulma CSS framework and has optional navlink YAML header elements and also has support for arbitrary footer content & a subset of OpenGraph tags (see the example Rmd) which will be used in header of the generated file.
  • skeleton (output: markdowntemplates::skeleton) or default (output: markdowntemplates::default) uses the Skeleton CSS framework and has optional navlink YAML header elements and also has support for arbitrary footer content & a subset of OpenGraph tags (see the example Rmd) which will be used in header of the generated file.
  • kube (output: markdowntemplates::kube) uses the Kube CSS framework (contributed by Kieran Healy)
  • minimal (output: markdowntemplates::minimal) uses no CSS framework and only uses the title YAML header element.
  • hugo (output: markdowntemplates::hugo) produces markdown suitable for Hugo websites. It makes a broad assumption that you will save/use the hugo document in the content directory of your Hugo websites.
  • prismpress (output: markdowntemplates::prismpress) produces markdown suitable for use in WordPress with Jetpack (markdown-enabled) and Prism
  • prismskel (output: markdowntemplates::hrbrskel) is a revamp of the skeleton template that has top navbar and footer as optional, uses different base colors, is Fira Sans/Fira Code-based and uses Prism for code highlighting with a dark theme.

When you use RStudio to create a new R Markdown document, select "From Template" and choose one of these templates.

knit engine replacements

  • to_jupyter() : uses notedown to make an ipynb out of an Rmd If you create an R markdown (Rmd) document with the following YAML header:


    knit: markdowntemplates::to_jupyter run: false

The to_jupyter() engine will be used and notedown will be used to convert the notebook to a Jupyter (ipynb) notebook. The run parameter is optional. If not present or set to true the notebook will be executed as it is converted to a Jupyter notebook. The engine is also now smart enough to detect the absence of pure R code chunks and avoid including of:

%load_ext rpy2.ipython

at the top of the notebook.

Installation

Since the package is not on CRAN yet, you have to install it devtools-style

devtools::install_git("https://sr.ht/~hrbrmstr/markdowntemplates")
# OR
devtools::install_git("https://gitlab.com/hrbrmstr/markdowntemplates")
# OR
devtools::install_github("hrbrmstr/markdowntemplates")

Bulma example

Skeleton/default example

Kube example

Minimal example

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].