- Notifications
You must be signed in to change notification settings - Fork3
using criticmarkup in the pandoc markdown source
License
ickc/pancritic
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
- Definition of CriticMarkup
- Installation
- Usage: pancritic as a markdown wrapper (including but not limitedtopandoc)
- Caveats
- Credits
Using CriticMarkup with pandoc. It serves both as a wrapper and apre-processor.
- Deletions: This is {--is --}a test.
- Additions: This {++is ++}a test.
- Substitutions: This {~~isn’t~>is~~} a test.
- Highlighting: This is a {==test==}.
- Comments: This is a test{>>What is a test for?<<}.
Install using
pip install pancritic
pancritic provides a pandoc-like cli. Pandoc users will feel right athome. See help from
pancritic -h
A typical use of pancritic will be like
pancritic -s -o index.html index.md
--engine
The default engine ismarkdown
. Valid options aremarkdown
,markdown2
,panflute
,pypandoc
. You need to install therespective package in order to use them.markdown
andmarkdown2
are pure Python, hence useful for other CPU architechture.panflute
andpypandoc
both uses pandoc as backend.-m
|--critic-mode
a/accept, r/reject: accept/reject changes.d/diff: generates a diff. In HTML output, JS is used for togglingbetween diff, accept, reject.
m/markup: treat the CriticMarkup as Markup. i.e. in HTML outputthere isn’t any toggles but the diff view only. In LaTeX output,diff and markup modes are identical except for an additional nav.
-m m
should be used with LaTeX output.
This is completely rewritten in Python. The cli has been completelychanged too. The former options of-a
,-r
,-d
are replaced with-m a
,-m r
,-m d
, and added a-m m
.
This is a heavy fork ofcriticParser_CLI.py
, with these differences:
- CLI has changed, with a more pandoc-like interface.
- Python 3 (and 2) compatible.
- Bug fixes (formerly hightlight without comment are parsedincorrectly).
- It has much more input/output format options as well as engines.
Examples,
criticParser_CLI.py input.md -m2 -o output.html --css css.html# is equivalent topancritic -o output.html input.md --critic-template css.html --engine markdown2
A somewhat surprising behavior is when the to-format and outputextension is different. In pancritic, the to-format indicates theCriticMarkup parsing behavior (mainly tex vs. html). And the outputextension controls the final output’s format (e.g. markdown, html, etc.)
An interesting use of this is to use pancritic as a pandoc preprocessorinstead, like this
pancritic input.md -t markdown -m m| pandoc -s -o output.html
This will be useful if more advanced pandoc args are needed.
Nesting CriticMarkup might have unexpected behavior, especially inLaTeX output. Seethe caveats section in the spec ofCriticMarkup.
mainly tested with HTML and LaTeX output. RST output almost works,but injecting CSS/JS into the output causes some problems.Currently, it can be get arround with
--critic-template
andinjecting the CSS/JS manually. Seepancritic/template.py
for thetemplate used.
Note that the LaTeX output requires the LaTeX packageschanges>=3
.[1]
One can tell pandoc to use this package by either using a customtemplate or--include-in-header
option. Or you can use the trick ofputting the following in your YAML front matter, like this file:
---fontfamily:lmodern,changes...
Markdown within the CriticMarkup will not be rendered in LaTeX output.If you want to change this behavior, you can take a look at:LaTeXArgumentParser.
CriticMarkup | LaTeX |
---|---|
{--[text]--} | \deleted{[text]} |
{++[text]++} | \added{[text]} |
{~~[text1]~>[text2]~~} | \replaced{[text2]}{[text1]} |
{==[text]==} | \highlight{[text]} |
{>>[text]<<} | \comment{[text]} |
Translation from CriticMarkup to LaTeX.
- Heavily modified fromCriticMarkup Toolkit’scriticParser_CLI.py
- tests.md is modified fromMMD-Test-Suite/Critic.text atmaster ·fletcher/MMD-Test-Suite
The version of the package in TeXLive 2018 is still v2.TeXLive 2019 should be availableon 2019-4-30, meanwhile you need to
# sudo is needed in most cases, depending on where you put itsudo tlmgr update --selfsudo tlmgr update changes# check it is >=3tlmgr info changes
About
using criticmarkup in the pandoc markdown source