You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 line
2.2KB

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/bulma_document.R
  3. \name{bulma_document}
  4. \alias{bulma_document}
  5. \title{Bulma Document Renderer}
  6. \usage{
  7. bulma_document(..., css = NULL, pandoc_args = NULL)
  8. }
  9. \arguments{
  10. \item{...}{Arguments passed on to \code{rmarkdown::html_document_base}
  11. \describe{
  12. \item{smart}{Produce typographically correct output, converting straight
  13. quotes to curly quotes, --- to em-dashes, -- to en-dashes, and ... to
  14. ellipses.}
  15. \item{theme}{Visual theme ("default", "cerulean", "journal", "flatly",
  16. "readable", "spacelab", "united", "cosmo", "lumen", "paper", "sandstone",
  17. "simplex", or "yeti"). Pass \code{NULL} for no theme (in this case you can
  18. use the \code{css} parameter to add your own styles).}
  19. \item{self_contained}{Produce a standalone HTML file with no external
  20. dependencies, using data: URIs to incorporate the contents of linked
  21. scripts, stylesheets, images, and videos. Note that even for self contained
  22. documents MathJax is still loaded externally (this is necessary because of
  23. its size).}
  24. \item{lib_dir}{Directory to copy dependent HTML libraries (e.g. jquery,
  25. bootstrap, etc.) into. By default this will be the name of the document with
  26. \code{_files} appended to it.}
  27. \item{mathjax}{Include mathjax. The "default" option uses an https URL from a
  28. MathJax CDN. The "local" option uses a local version of MathJax (which is
  29. copied into the output directory). You can pass an alternate URL or pass
  30. \code{NULL} to exclude MathJax entirely.}
  31. \item{pandoc_args}{Additional command line options to pass to pandoc}
  32. \item{template}{Pandoc template to use for rendering. Pass "default" to use
  33. the rmarkdown package default template; pass \code{NULL} to use pandoc's
  34. built-in template; pass a path to use a custom template that you've created.
  35. Note that if you don't use the "default" template then some features of
  36. \code{html_document} won't be available (see the Templates section below for
  37. more details).}
  38. \item{dependency_resolver}{A dependency resolver}
  39. \item{copy_resources}{Copy resources}
  40. \item{extra_dependencies}{Extra dependencies}
  41. \item{bootstrap_compatible}{Bootstrap compatible}
  42. }}
  43. }
  44. \description{
  45. Bulma Document Renderer
  46. }