diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-06-20 15:24:24 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-06-20 15:26:45 -0700 |
commit | 5d0103606f469a6336beb2f7a90f210dd29485bd (patch) | |
tree | a045d1bf606c0d0c5a83ea5e6a0117f78aed384c /README | |
parent | d397a66107a932e702d0f9cbba5df3ce09be25fd (diff) | |
download | pandoc-5d0103606f469a6336beb2f7a90f210dd29485bd.tar.gz |
Markdown reader: Support smallcaps through span.
`<span style="font-variant:small-caps;">foo</span>` will be
parsed as a `SmallCaps` inline, and will work in all output
formats that support small caps.
Closes #1360.
Diffstat (limited to 'README')
-rw-r--r-- | README | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -2020,6 +2020,14 @@ Attributes can be attached to verbatim text, just as with `<$>`{.haskell} +### Small caps ### + +To write small caps, you can use an HTML span tag: + + <span style="font-variant:small-caps;">Small caps</span> + +This will work in all output formats that support small caps. + Math ---- |