diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-07-12 14:04:30 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-07-12 14:04:30 -0700 |
commit | 0756616241081c6f902a78c2e451be1c9b9173de (patch) | |
tree | b59324ea3267a8b76be4bbaa50600d775ba62d52 /README | |
parent | 7654db9df1b68926371da2a1f23db6df93056f44 (diff) | |
parent | a9f00ee0d6d0359ae5e7af66f3c36e32e0ae961e (diff) | |
download | pandoc-0756616241081c6f902a78c2e451be1c9b9173de.tar.gz |
Merge pull request #1418 from wcaleb/document_code_attr_ext
document fenced_code_attributes extension
Diffstat (limited to 'README')
-rw-r--r-- | README | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1181,6 +1181,8 @@ row of tildes or backticks at the start and end: ~~~~~~~~~~ ~~~~~~~~~~~~~~~~ +**Extension: `fenced_code_attributes`** + Optionally, you may attach attributes to the code block using this syntax: @@ -1217,6 +1219,11 @@ This is equivalent to: qsort [] = [] ``` +If the `fenced_code_attributes` extension is disabled, but +input contains class attribute(s) for the codeblock, the first +class attribute will be printed after the opening fence as a bare +word. + To prevent all highlighting, use the `--no-highlight` flag. To set the highlighting style, use `--highlight-style`. |