From bbeab50f4be50b0d80c5c3e5f5aa3db3c2db36cb Mon Sep 17 00:00:00 2001 From: James Foster Date: Fri, 5 Nov 2021 12:03:32 +1100 Subject: [PATCH] [docs] Add CommonMarkFlavor to list. --- 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/).