-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Textile reader: bold and inline code interfere with each other #3024
Comments
Pandoc's behavior matches that of the online dingus at https://txstyle.org/ |
I beg to differ, the text "not bold" should not be bold. On https://txstyle.org/, entering the string
returns the correct HTML: <p><strong>@John</strong> not bold <strong>@Jane</strong></p> which corresponds to the expected output, but not actual output of pandoc. pandoc v1.17.2 will make the text "not bold" bold (and mess up the |
OK, now I get this result too (I don't know why I thought I It's not really clear to me what the rules are. +++ Adrien Crivelli [Jul 19 16 00:16 ]:
|
I didn't read the syntax, but wouldn't that be something along the lines of "an inline formatting cannot include another inline formatting" ? So the bold starts, the code is ignored, and then the bold finishes. Then one more time for the second word ?... That may be over simplistic though... |
You can have +++ Adrien Crivelli [Jul 19 16 09:28 ]:
|
Solves the writer part of jgm#3024 Also supports additional core properties: * subject * lang * category * description Includes golden tests
* docx writer: support custom properties. Solves the writer part of #3024. Also supports additional core properties: `subject`, `lang`, `category`, `description`. * odt writer: improve standard properties, including the following core properties: `generator` (Pandoc/VERSION), `description`, `subject`, `keywords`, `initial-creator` (from authors), `creation-date` (actual creation date). Also fix date. * pptx writer: support custom properties. Also supports additional core properties: `subject`, `category`, `description`. * Includes golden tests. * MANUAL: document metadata support for docx, odt, pptx writers
It is not possible to read correctly a formatting made to look like GitHub mentions. The presence of
@
and*
interlaced breaks the output. This syntax should probably be supported as it is supported on https://txstyle.org/ and in Redmine.Actual:
Expected:
The text was updated successfully, but these errors were encountered: