diff options
Diffstat (limited to 'docs/modules')
27 files changed, 126 insertions, 117 deletions
diff --git a/docs/modules/ROOT/nav-safe-modes.adoc b/docs/modules/ROOT/nav-safe-modes.adoc index be07ed4d..2d362d52 100644 --- a/docs/modules/ROOT/nav-safe-modes.adoc +++ b/docs/modules/ROOT/nav-safe-modes.adoc @@ -1,2 +1,2 @@ * xref:safe-modes.adoc[] -** xref:attributes-and-safe-modes.adoc[] +** xref:reference-safe-mode.adoc[] diff --git a/docs/modules/ROOT/pages/language-support.adoc b/docs/modules/ROOT/pages/language-support.adoc index 4af521ff..362411d0 100644 --- a/docs/modules/ROOT/pages/language-support.adoc +++ b/docs/modules/ROOT/pages/language-support.adoc @@ -39,85 +39,85 @@ If you're not using the DocBook toolchain for publishing, you must translate eac One way is to set the following attributes in the document header or by passing the attributes via the API or CLI: .Attributes that control built-in labels -[%autowidth] +[%autowidth,cols="m,,"] |=== -|Attribute name |Used for |Default +|Attribute |Default English Value |Notes |appendix-caption -|Appendix titles. |Appendix +| |caution-caption -|CAUTION admonitions (when icons are not in use). |Caution +| |chapter-label -|Prefix added to chapter titles (i.e., level-1 section titles when doctype is book). _(pdf converter only)_ |Chapter +|Applies only when `doctype` is `book`. +PDF converter only. |example-caption -|Example titles. |Example +| |figure-caption -|Automatically prefixed to figure titles. |Figure +| |important-caption -|IMPORTANT admonitions (when icons are not in use). |Important +| |last-update-label -|Label for when the document was last updated. |Last updated +| |listing-caption -|The label for listing blocks. -By default, listing blocks do not have captions. -If you specify `listing-caption`, then you also turn on captions for listing blocks. |_not set_ +|By default, listing blocks do not have captions. +Specify `listing-caption` to turn on listing block captions. |manname-title -|Label for the program name section in the man page. |NAME +|Applies only when `doctype` is `manpage`. |note-caption -|NOTE admonitions (when icons are not in use). |Note +| |preface-title -|Title text used for the anonymous preface (when the `doctype` is book). |_not set_ +|Applies only when `doctype` is `book`. |table-caption -|Automatically prefixed to table titles. |Table +| |tip-caption -|TIP admonitions (when icons are not in use). |Tip +| |toc-title -|Title of the table of contents. |Table of Contents +| |untitled-label -|The document title, for documents that have only body content. |Untitled +| |version-label -|The label preceding the revnumber in the document's byline. |Version +| |warning-caption -|WARNING admonitions (when icons are not in use). |Warning +| |=== -If you plan to support multiple languages, you'll want to define the attributes for each language inside a conditional preprocessor directive. +If you plan to support multiple languages, you'll want to define the attributes for each language inside a xref:asciidoc:directives:conditionals.adoc[conditional preprocessor directive]. For example: -[source] +[source,asciidoc] ---- \ifeval::["{lang}" == "de"] :caution-caption: Achtung diff --git a/docs/modules/ROOT/pages/attributes-and-safe-modes.adoc b/docs/modules/ROOT/pages/reference-safe-mode.adoc index 1d18c502..8c5b47b2 100644 --- a/docs/modules/ROOT/pages/attributes-and-safe-modes.adoc +++ b/docs/modules/ROOT/pages/reference-safe-mode.adoc @@ -1,12 +1,11 @@ -= Manage Attributes By Safe Mode += Safe Mode Specific Content // anchor: set-safe-attrs -Asciidoctor provides security levels that control the read and write access of attributes, the include directive, macros, and scripts while a document is processing. -Each level includes the restrictions enabled in the prior security level. - Asciidoctor provides access to the xref:safe-modes.adoc[current safe mode] through built-in attributes. You can use these attributes to enable or disable content based on the current safe mode of the processor. +== Referencing safe modes + The safe mode can be referenced by one of the following attributes: * The value of the `safe-mode-name` attribute (e.g., unsafe, safe, etc.) diff --git a/docs/modules/ROOT/pages/safe-modes.adoc b/docs/modules/ROOT/pages/safe-modes.adoc index 3e06f836..c8ac7d8f 100644 --- a/docs/modules/ROOT/pages/safe-modes.adoc +++ b/docs/modules/ROOT/pages/safe-modes.adoc @@ -1,6 +1,6 @@ = Safe Modes -Asciidoctor provides security levels that control the read and write access of attributes, the include directive, macros, and scripts while a document is processing. +Asciidoctor provides security levels that control the read and write access of attributes, include directives, macros, and scripts while a document is processing. Each level includes the restrictions enabled in the prior security level. == Safe mode levels @@ -48,7 +48,7 @@ Additionally, it: * disables `docdir` and `docfile` (as these can reveal information about the host filesystem) * disables source highlighting -xref:extensions:register.adoc[Asciidoctor extensions] may still embed content into the document depending whether they honor the safe mode setting. +xref:extensions:index.adoc[Asciidoctor extensions] may still embed content into the document depending whether they honor the safe mode setting. *This is the default safe mode for the API.* Its integer value is `20`. @@ -80,4 +80,4 @@ TIP: GitHub processes AsciiDoc files using the `SECURE` level. //// The safe mode can be set from the xref:cli:set-safe-mode.adoc[CLI] and the xref:api:set-safe-mode.adoc[API]. -You can also xref:attributes-and-safe-modes.adoc[manage attributes by safe mode]. +You can also xref:reference-safe-mode.adoc[enable or disable content based on the current safe mode]. diff --git a/docs/modules/api/pages/set-safe-mode.adoc b/docs/modules/api/pages/set-safe-mode.adoc index dcf13af6..8ff65b5d 100644 --- a/docs/modules/api/pages/set-safe-mode.adoc +++ b/docs/modules/api/pages/set-safe-mode.adoc @@ -3,6 +3,9 @@ The default xref:ROOT:safe-modes.adoc[safe mode] in the API is `SECURE`. You can change the safe mode using a string, symbol or integer value. + +== Set :safe option + The value must be set in the document constructor using the `:safe` option. result = Asciidoctor.convert_file('master.adoc', :safe => 'server') @@ -15,4 +18,4 @@ or result = Asciidoctor.convert_file('master.adoc', :safe => 10) -You can also set the xref:cli:set-safe-mode.adoc[safe mode from the CLI] and xref:ROOT:attributes-and-safe-modes.adoc[manage attributes by safe mode]. +You can also set the xref:cli:set-safe-mode.adoc[safe mode from the CLI] and xref:ROOT:reference-safe-mode.adoc[enable or disable content based on the current safe mode]. diff --git a/docs/modules/cli/pages/process-multiple-files.adoc b/docs/modules/cli/pages/process-multiple-files.adoc index 0d565b77..db6368e5 100644 --- a/docs/modules/cli/pages/process-multiple-files.adoc +++ b/docs/modules/cli/pages/process-multiple-files.adoc @@ -45,4 +45,4 @@ Most shells do not honor this double glob pattern. In conclusion, when specifying a glob pattern, we always recommend enclosing the argument in quotes. -CAUTION: To process multiple nested AsciiDoc files at once and apply a custom stylesheet, you'll need to xref:html-backend:apply-stylesheet.adoc#style-nested[manage the stylesheet's location]. +CAUTION: To process multiple nested AsciiDoc files at once and apply a custom stylesheet, you'll need to xref:html-backend:custom-stylesheets.adoc#style-nested[manage the stylesheet's location]. diff --git a/docs/modules/cli/pages/set-safe-mode.adoc b/docs/modules/cli/pages/set-safe-mode.adoc index 31110060..66db3565 100644 --- a/docs/modules/cli/pages/set-safe-mode.adoc +++ b/docs/modules/cli/pages/set-safe-mode.adoc @@ -1,7 +1,10 @@ = Set the Safe Mode Using the CLI -:navtitle: Set the Safe Mode +:navtitle: Set Safe Mode When Asciidoctor is invoked via the CLI, the xref:ROOT:safe-modes.adoc[safe mode] is set to `UNSAFE` by default. + +== Assign safe mode level + You can change the security level by executing one of the following commands: `-S`, `--safe-mode=SAFE_MODE`:: @@ -16,4 +19,4 @@ Provided for compatibility with the python AsciiDoc `safe` command. Base directory containing the document and resources. Defaults to the directory containing the source file, or the working directory if the source is read from a stream. Can be used as a way to chroot the execution of the program. //// -You can also set the xref:api:set-safe-mode.adoc[safe mode from the API] and xref:ROOT:attributes-and-safe-modes.adoc[manage attributes by safe mode]. +You can also set the xref:api:set-safe-mode.adoc[safe mode from the API] and xref:ROOT:reference-safe-mode.adoc[enable or disable content based on the current safe mode]. diff --git a/docs/modules/html-backend/nav.adoc b/docs/modules/html-backend/nav.adoc index aa1054cb..396b226a 100644 --- a/docs/modules/html-backend/nav.adoc +++ b/docs/modules/html-backend/nav.adoc @@ -1,7 +1,7 @@ * xref:index.adoc[] ** xref:manage-stylesheets.adoc[] -** xref:apply-code-stylesheets.adoc[] -** xref:apply-stylesheet.adoc[] +** xref:source-highlighting-stylesheets.adoc[] +** xref:custom-stylesheets.adoc[] ** xref:favicon.adoc[] ** xref:manage-images.adoc[] ** xref:favicon.adoc[] diff --git a/docs/modules/html-backend/pages/apply-stylesheet.adoc b/docs/modules/html-backend/pages/custom-stylesheets.adoc index e645e664..1cc20d2a 100644 --- a/docs/modules/html-backend/pages/apply-stylesheet.adoc +++ b/docs/modules/html-backend/pages/custom-stylesheets.adoc @@ -6,7 +6,7 @@ apply-theme.adoc, included in: //// A custom stylesheet can be stored in the same directory as your document or in a separate directory. -Like the default stylesheet, you can have the output document link to your custom stylesheet or embed it. +Like the xref:manage-stylesheets.adoc[default stylesheet], you can have the output document link to or embed your custom stylesheet. If the stylesheet is in the same directory as your document, you can apply it when converting your document to HTML from the CLI. diff --git a/docs/modules/html-backend/pages/index.adoc b/docs/modules/html-backend/pages/index.adoc index 5c562bdb..be3c9ec3 100644 --- a/docs/modules/html-backend/pages/index.adoc +++ b/docs/modules/html-backend/pages/index.adoc @@ -9,7 +9,7 @@ Asciidoctor's default output format is HTML. == Generate HTML using the html5 converter -In this section, we'll create a sample document, then process and convert it with Asciidoctor's `html5` converter. +In this section, we'll create a sample document, then process and convert it with Asciidoctor's built-in HTML converter. . Create an AsciiDoc file like the one below . Save the file as [.path]_my-sample.adoc_ diff --git a/docs/modules/html-backend/pages/manage-stylesheets.adoc b/docs/modules/html-backend/pages/manage-stylesheets.adoc index aa6042b3..781c736e 100644 --- a/docs/modules/html-backend/pages/manage-stylesheets.adoc +++ b/docs/modules/html-backend/pages/manage-stylesheets.adoc @@ -3,13 +3,12 @@ == What is the default stylesheet? Asciidoctor comes bundled with a stylesheet, named [.path]_asciidoctor.css_. -It uses this stylesheet for HTML document styling and JavaScript for generating document attributes such as a table of contents and footnotes. -This stylesheet is applied by default unless you tell Asciidoctor to use another stylesheet. -See xref:html-backend:apply-stylesheet.adoc[] to learn about the default and custom stylesheet options. +The built-in HTML converter uses this stylesheet for HTML document styling and JavaScript for generating document attributes such as a table of contents and footnotes. +Asciidoctor applies this stylesheet by default unless you tell Asciidoctor to use another stylesheet. == Embed a stylesheet -When you generate a document with the `html5` backend, the [.path]_asciidoctor.css_ stylesheet is embedded into the HTML output by default when the safe mode is less than `SECURE`. +When you generate a document using the built-in HTML converter, the [.path]_asciidoctor.css_ stylesheet is embedded into the HTML output by default when the xref:ROOT:safe-modes.adoc[safe mode] is less than `SECURE`. If your stylesheet is being linked to when you expect it to be embedded, lower the safe mode (`safe` is the recommend value). == Link to a stylesheet @@ -37,10 +36,10 @@ Additionally, you can inspect [.path]_my-sample.html_ in your browser and see `< //image::mysample-link.png[] ==== -== Don't apply a stylesheet +== Disable a stylesheet If you don't want any styles applied to the HTML output of your document, unset the `stylesheet` attribute. $ asciidoctor -a stylesheet! my-sample.adoc -One of Asciidoctor's strengths is the ease in which you can swap the default stylesheet for your own xref:apply-stylesheet.adoc[custom stylesheet]. +One of Asciidoctor's strengths is the ease in which you can swap the default stylesheet for your own xref:custom-stylesheets.adoc[custom stylesheet]. diff --git a/docs/modules/html-backend/pages/apply-code-stylesheets.adoc b/docs/modules/html-backend/pages/source-highlighting-stylesheets.adoc index 42be39cb..0b9ad08a 100644 --- a/docs/modules/html-backend/pages/apply-code-stylesheets.adoc +++ b/docs/modules/html-backend/pages/source-highlighting-stylesheets.adoc @@ -1,4 +1,4 @@ -= Apply CodeRay or Pygments Stylesheets += Embed a CodeRay or Pygments Stylesheet // um anchor: hl-css // html-code-styles.adoc, included in convert-documents and the user-manual. @@ -7,7 +7,7 @@ Asciidoctor can embed the stylesheet for the CodeRay or Pygments syntax highligh == Requirements First, make sure the appropriate library is installed on your system. -See xref:integrations:rouge.adoc[], xref:integrations:coderay.adoc[], or xref:integrations:pygments.adoc[] for installation instructions. +See xref:source-highlighters:rouge.adoc[], xref:source-highlighters:coderay.adoc[], or xref:source-highlighters:pygments.adoc[] for installation instructions. Next, set the xref:asciidoc:verbatim:source-highlighter.adoc[source-highlighter attribute] and assign it the value that corresponds to the library you installed. [#coderay] diff --git a/docs/modules/integrations/nav.adoc b/docs/modules/integrations/nav.adoc deleted file mode 100644 index b6d8da60..00000000 --- a/docs/modules/integrations/nav.adoc +++ /dev/null @@ -1,9 +0,0 @@ -* Integrations -** xref:syntax-highlighters.adoc[] -*** xref:rouge.adoc[] -*** xref:coderay.adoc[] -*** xref:highlightjs.adoc[] -*** xref:pygments.adoc[] -** xref:stem.adoc[] -*** xref:mathjax.adoc[] -*** xref:asciimath-gem.adoc[] diff --git a/docs/modules/integrations/pages/stem.adoc b/docs/modules/integrations/pages/stem.adoc deleted file mode 100644 index 809dfa16..00000000 --- a/docs/modules/integrations/pages/stem.adoc +++ /dev/null @@ -1,15 +0,0 @@ -= Supported STEM Libraries -// Stem equations and formulas - -[%autowidth] -|=== -|Integration |Supported Versions |Backends - -|MathJax -|2.7.9 -|HTML - -|AsciiMath -|2.0.x -|Docbook -|=== diff --git a/docs/modules/integrations/pages/syntax-highlighters.adoc b/docs/modules/integrations/pages/syntax-highlighters.adoc deleted file mode 100644 index a8354393..00000000 --- a/docs/modules/integrations/pages/syntax-highlighters.adoc +++ /dev/null @@ -1,26 +0,0 @@ -= Supported Syntax Highlighters - -[%autowidth] -|=== -|Feature |Supported Integration |Supported Versions - -|Client-side syntax highlighting for source code blocks -|Highlight.js -|9.18.3 - -.3+|Server-side syntax highlighting for source code blocks -|CodeRay -|1.1.2 - -|Pygments -|2.2.0 - -|Rouge -|3.1.1 -|=== - -//// -|Inline, admonition or callout font-based icons -|Font Awesome -|4.7 -//// diff --git a/docs/modules/manpage-backend/pages/index.adoc b/docs/modules/manpage-backend/pages/index.adoc index 31386990..346fa25a 100644 --- a/docs/modules/manpage-backend/pages/index.adoc +++ b/docs/modules/manpage-backend/pages/index.adoc @@ -1,5 +1,5 @@ -= Generate Man Pages from AsciiDoc -:navtitle: Generate Man Pages += Generate Manual Pages from AsciiDoc +:navtitle: Generate Manual Pages :url-man7: https://man7.org/linux/man-pages/man7/roff.7.html :url-docbook-refmisc: https://tdg.docbook.org/tdg/5.0/refmiscinfo.html :url-manpage-raw: https://raw.githubusercontent.com/asciidoctor/asciidoctor/master/man/asciidoctor.adoc @@ -11,11 +11,11 @@ Asciidoctor's built-in man page converter generates {url-man7}[roff-formatted^] == What is a manual page? A manual page, often abbreviated to man page, is a form of software documentation found on Unix-based operating systems. -The formalized structure of its content allows the `man` command to present the man page as a formatted document in a terminal pager. +The formalized structure of its content allows the `man` command to present the manual page as a formatted document in a terminal pager. == Generate a man page with the manpage converter -Before running Asciidoctor, make sure your source document adheres to the <<man-page-doctype,manpage doctype structure>> and has the doctype attribute set to `manpage`. +Before running Asciidoctor, make sure your source document adheres to the <<doctype,manpage doctype structure>> and the `doctype` attribute is assigned the value `manpage`. To generate a man page, run: @@ -42,6 +42,7 @@ Here is an example man page composed in AsciiDoc for the `eve` command: include::example$manpage.adoc[] ---- +[#doctype] == Man page doctype The `manpage` doctype has the following required parts: @@ -66,51 +67,51 @@ Subsequent sections are optional, but typical sections include "`SEE ALSO`", "`B Several built-in document attributes only affect man pages. These attributes must be set in the document header. -[cols="<15,<30,<30"] -.Built-in document attributes specific to the manpage doctype +.Built-in manpage document attributes +[%autowidth] |=== -|Attribute name |Description |Value (as parsed from example above) +|Attribute |Description |Value (as parsed from example above) -|mantitle +|`mantitle` |Alternative way to set the man page name. |ASCIIDOCTOR(1) -|manvolnum +|`manvolnum` |Manual section number. |1 -|manname +|`manname` |Alternative way to set the command name. |asciidoctor -|manpurpose +|`manpurpose` |Alternative way to set the command purpose. |converts AsciiDoc source files -|man-linkstyle +|`man-linkstyle` |Style the links in the manpage output. A valid link format sequence. // Needs a reference to this. |blue R <> -|mansource +|`mansource` |The source to which the manpage pertains. When producing DocBook, it becomes a DocBook {url-docbook-refmisc}[refmiscinfo^] attribute and appears in the footer. |Asciidoctor -|manversion +|`manversion` |The version of the man page. Defaults to revnumber if not specified. When producing DocBook, it becomes a DocBook {url-docbook-refmisc}[refmiscinfo^] attribute and appears in the footer. Not used by Asciidoctor. |1.5.4 -|manmanual +|`manmanual` |Manual name. When producing DocBook, it becomes a DocBook {url-docbook-refmisc}[refmiscinfo^] attribute and appears in the footer. |Asciidoctor Manual |=== Refer to {url-manpage-raw}[the AsciiDoc source of the Asciidoctor man page^] to see a complete example. -The man page for Asciidoctor is produced using the `manpage` converter. -The man pages for git are also produced from AsciiDoc documents, so you can use those as another example to follow. +The manual page for Asciidoctor is produced using the `manpage` converter. +The manual pages for git are also produced from AsciiDoc documents, so you can use those as another example to follow. diff --git a/docs/modules/migrate/pages/asciidoc-python.adoc b/docs/modules/migrate/pages/asciidoc-python.adoc index c18e26c4..56d4b608 100644 --- a/docs/modules/migrate/pages/asciidoc-python.adoc +++ b/docs/modules/migrate/pages/asciidoc-python.adoc @@ -294,7 +294,7 @@ a| === Custom extensions AsciiDoc.py custom extensions are Python commands, so they don't work with Asciidoctor. -Depending on the Asciidoctor processor you choose, you can re-write your xref:extensions:register.adoc[extensions in Ruby, Java, or JavaScript]. +Depending on the Asciidoctor processor you choose, you can re-write your xref:extensions:index.adoc[extensions in Ruby, Java, or JavaScript]. == Doctest diff --git a/docs/modules/source-highlighters/nav.adoc b/docs/modules/source-highlighters/nav.adoc new file mode 100644 index 00000000..7464bc7e --- /dev/null +++ b/docs/modules/source-highlighters/nav.adoc @@ -0,0 +1,5 @@ +* xref:index.adoc[] +** xref:highlightjs.adoc[] +** xref:rouge.adoc[] +** xref:coderay.adoc[] +** xref:pygments.adoc[] diff --git a/docs/modules/integrations/pages/coderay.adoc b/docs/modules/source-highlighters/pages/coderay.adoc index 7a590b8a..c7b035a9 100644 --- a/docs/modules/integrations/pages/coderay.adoc +++ b/docs/modules/source-highlighters/pages/coderay.adoc @@ -100,7 +100,7 @@ ORDERED_LIST_KEYWORDS = { ---- .... -See the xref:html-backend:apply-code-stylesheets.adoc#coderay[CodeRay stylesheet section] to learn about the `coderay-css` attribute. +See the xref:html-backend:source-highlighting-stylesheets.adoc#coderay[CodeRay stylesheet section] to learn about the `coderay-css` attribute. //// Note: I'm not getting this to work. Need to come back and do some quality assurance. diff --git a/docs/modules/integrations/pages/highlightjs.adoc b/docs/modules/source-highlighters/pages/highlightjs.adoc index 17372031..17372031 100644 --- a/docs/modules/integrations/pages/highlightjs.adoc +++ b/docs/modules/source-highlighters/pages/highlightjs.adoc diff --git a/docs/modules/source-highlighters/pages/index.adoc b/docs/modules/source-highlighters/pages/index.adoc new file mode 100644 index 00000000..4312be25 --- /dev/null +++ b/docs/modules/source-highlighters/pages/index.adoc @@ -0,0 +1,32 @@ += Source Highlighting + +[%autowidth] +|=== +| |Syntax Highlighter |Supported Versions |Converters + +|Client-side highlighting for source code blocks + +|Highlight.js +|9.18.3 +|HTML + +.3+|Server-side highlighting for source code blocks + +|CodeRay +|1.1.2 +|HTML + +|Pygments +|2.2.0 +|HTML + +|Rouge +|3.1.1 +|HTML +|=== + +//// +|Inline, admonition or callout font-based icons +|Font Awesome +|4.7 +//// diff --git a/docs/modules/integrations/pages/pygments.adoc b/docs/modules/source-highlighters/pages/pygments.adoc index 9456955b..a049b690 100644 --- a/docs/modules/integrations/pages/pygments.adoc +++ b/docs/modules/source-highlighters/pages/pygments.adoc @@ -49,7 +49,7 @@ Default: `pastie`. pygments-css:: Controls what method is used for applying CSS to the tokens. Can be `class` (CSS classes) or `style` (inline styles). -See the xref:html-backend:apply-code-stylesheets.adoc#pygments[Pygments stylesheet section] to learn more about how the value `class` is handled. +See the xref:html-backend:source-highlighting-stylesheets.adoc#pygments[Pygments stylesheet section] to learn more about how the value `class` is handled. Default: `class`. pygments-linenums-mode:: diff --git a/docs/modules/integrations/pages/rouge.adoc b/docs/modules/source-highlighters/pages/rouge.adoc index b6022864..b6022864 100644 --- a/docs/modules/integrations/pages/rouge.adoc +++ b/docs/modules/source-highlighters/pages/rouge.adoc diff --git a/docs/modules/stem/nav.adoc b/docs/modules/stem/nav.adoc new file mode 100644 index 00000000..4f96cb52 --- /dev/null +++ b/docs/modules/stem/nav.adoc @@ -0,0 +1,3 @@ +* xref:index.adoc[] +** xref:mathjax.adoc[] +** xref:asciimath-gem.adoc[] diff --git a/docs/modules/integrations/pages/asciimath-gem.adoc b/docs/modules/stem/pages/asciimath-gem.adoc index 5d9e82d7..5d9e82d7 100644 --- a/docs/modules/integrations/pages/asciimath-gem.adoc +++ b/docs/modules/stem/pages/asciimath-gem.adoc diff --git a/docs/modules/stem/pages/index.adoc b/docs/modules/stem/pages/index.adoc new file mode 100644 index 00000000..6ea72af6 --- /dev/null +++ b/docs/modules/stem/pages/index.adoc @@ -0,0 +1,14 @@ += STEM Processing + +[%autowidth] +|=== +|Integration |Supported Versions |Converters + +|MathJax +|2.7.9 +|HTML + +|AsciiMath +|2.0.x +|Docbook +|=== diff --git a/docs/modules/integrations/pages/mathjax.adoc b/docs/modules/stem/pages/mathjax.adoc index b27c7928..b27c7928 100644 --- a/docs/modules/integrations/pages/mathjax.adoc +++ b/docs/modules/stem/pages/mathjax.adoc |
