pandoc_list_extensions {pandoc} | R Documentation |
List supported extensions for a format
Description
Pandoc has a system of extensions to activate or deactivate some features. Each format have a set of activated by default extensions and other supported extensions than can be activated.
Usage
pandoc_list_extensions(format = "markdown", version = "default")
Arguments
format |
One for the supported |
version |
Version to use. Default will be the
|
Details
All the extensions for the last Pandoc version released are available in https://pandoc.org/MANUAL.html.
Value
a data.frame (or a tibble if available) with 3 columns:
-
format
: One of the Pandoc format -
extensions
: name of the extensions -
default
: Is the extensions activated by default or not ?
Examples
pandoc_list_extensions("markdown")
pandoc_list_extensions("gfm")
# target a specific version
pandoc_list_extensions("html", version = "system")