Modified refsMatch for new Math block element.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1113 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
f795a1219b
commit
53964297b5
1 changed files with 2 additions and 0 deletions
|
@ -636,6 +636,8 @@ refsMatch ((Quoted t x):restx) ((Quoted u y):resty) =
|
|||
t == u && refsMatch x y && refsMatch restx resty
|
||||
refsMatch ((Code x):restx) ((Code y):resty) =
|
||||
((map toLower x) == (map toLower y)) && refsMatch restx resty
|
||||
refsMatch ((Math x):restx) ((Math y):resty) =
|
||||
((map toLower x) == (map toLower y)) && refsMatch restx resty
|
||||
refsMatch ((TeX x):restx) ((TeX y):resty) =
|
||||
((map toLower x) == (map toLower y)) && refsMatch restx resty
|
||||
refsMatch ((HtmlInline x):restx) ((HtmlInline y):resty) =
|
||||
|
|
Loading…
Add table
Reference in a new issue