From 68ebb8c62f4c15988c0e29b9a86cd7ceee702b3e Mon Sep 17 00:00:00 2001 From: James Foster <38274066+jd-foster@users.noreply.github.com> Date: Fri, 5 Nov 2021 20:13:40 +1100 Subject: [PATCH] [docs] Add CommonMarkFlavor to list. (#174) --- docs/src/outputformats.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/src/outputformats.md b/docs/src/outputformats.md index 8716620..09497fb 100644 --- a/docs/src/outputformats.md +++ b/docs/src/outputformats.md @@ -80,9 +80,11 @@ Literate.markdown Literate can output markdown in different flavors. The flavor is specified using the `flavor` keyword argument. The following flavors are currently supported: - - `flavor = Literate.DocumenterFlavor()` this is the default flavor and the output is + - `flavor = Literate.DocumenterFlavor()`: this is the default flavor and the output is meant to be used as input to [Documenter.jl](https://github.com/JuliaDocs/Documenter.jl). - - `flavor = Literate.FranklinFlavor()` this outputs markdown meant to be used as input + - `flavor = Literate.CommonMarkFlavor()`: this outputs markdown that has the flavor of the + [CommonMark](https://commonmark.org/) specification. + - `flavor = Literate.FranklinFlavor()`: this outputs markdown meant to be used as input to [Franklin.jl](https://franklinjl.org/).