Skip to content

Commit

Permalink
Merge branch 'pan/doc-md-panic-fix' into dev
Browse files Browse the repository at this point in the history
* pan/doc-md-panic-fix:
  Workaround for ampersands in INSTALL-WIN32.md
  • Loading branch information
bufflig committed Dec 7, 2010
2 parents ada2a05 + cee3367 commit 99e34bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions make/emd2exml.in
Expand Up @@ -381,6 +381,8 @@ put_text(S, [$>|Cs], CTag, EmTag, Acc) when CTag /= no ->
put_text(S, Cs, CTag, EmTag, [">"|Acc]);
put_text(S, [$&|Cs], CTag, EmTag, Acc) when CTag /= no ->
put_text(S, Cs, CTag, EmTag, ["&"|Acc]);
put_text(S, [$&, $ |Cs], CTag, EmTag, Acc) -> %Workaround for INSTALL-WIN32.md
put_text(S, Cs, CTag, EmTag, ["& "|Acc]);
put_text(S, [$'|Cs], CTag, EmTag, Acc)when CTag /= no ->
put_text(S, Cs, CTag, EmTag, ["'"|Acc]);
put_text(S, [$<|Cs], no, EmTag, Acc) ->
Expand Down

0 comments on commit 99e34bb

Please sign in to comment.