diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-11-29 08:09:07 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-11-29 08:09:07 +0000 |
commit | f795a1219b964f60cf3685e409c8170181fe18c1 (patch) | |
tree | e17311b65dfff2ff834b71ee0cff053e878b0a32 /Text | |
parent | dc426000814d11b6d8393df491e4936aba5cf203 (diff) | |
download | pandoc-f795a1219b964f60cf3685e409c8170181fe18c1.tar.gz |
Added new Math block element.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1112 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Text')
-rw-r--r-- | Text/Pandoc/Definition.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Text/Pandoc/Definition.hs b/Text/Pandoc/Definition.hs index 7d1125c5a..c04ae0856 100644 --- a/Text/Pandoc/Definition.hs +++ b/Text/Pandoc/Definition.hs @@ -107,6 +107,7 @@ data Inline | Apostrophe -- ^ Apostrophe | Ellipses -- ^ Ellipses | LineBreak -- ^ Hard line break + | Math String -- ^ TeX math (literal) | TeX String -- ^ LaTeX code (literal) | HtmlInline String -- ^ HTML code (literal) | Link [Inline] Target -- ^ Hyperlink: text (list of inlines), target |