You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set org as the default page type in gitit. However, the default pandoc options in gitit cannot correctly parse Asian language because an additional space character will be inserted in the HTML if there is a line break in the sentence in the source file (say, org).
The correct way to let pandoc parse Asian language is as follows. pandoc -f org+east_asian_line_breaks -t html -o test.html test.org.
The problem is how to pass the correct option to pandoc? If I set default-page-type: org+east_asian_line_breaks in gitit.conf, there raises an error:
gitit: Unknown page type: org+east_asian_line_breaks
CallStack (from HasCallStack):
error, called at src/Network/Gitit/Util.hs:112:26 in gitit-0.12.3.1-HUbEGb7wE0e3DNcRrkhwOv:Network.Gitit.Util
Instead of a closed list, allow anything Pandoc understands. If there is no
markup/markupHelp file for the reader, then there will be no help, otherwise
this works as before.
Instead of special-casing +lhs this is now just a normal extension specification
understood by Pandoc. +emoji is always added as before. Reader specs are run
through toLower for compatibility with the existing system.
Closesjgm#636Closesjgm#580
I set org as the default page type in gitit. However, the default pandoc options in gitit cannot correctly parse Asian language because an additional space character will be inserted in the HTML if there is a line break in the sentence in the source file (say, org).
The correct way to let pandoc parse Asian language is as follows.
pandoc -f org+east_asian_line_breaks -t html -o test.html test.org
.The problem is how to pass the correct option to pandoc? If I set
default-page-type: org+east_asian_line_breaks
in gitit.conf, there raises an error:This may be related to issue #215
Please guide. Thanks!
The text was updated successfully, but these errors were encountered: