We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Source: #144, #149
Source document: https://github.com/metanorma/mn-samples-iso/tree/main/sources/international-standard
Current docx->adoc conversion result:
[[samplecode]] ==== Sample Code ==== ==== puts "Hello, world." + %w{a b c}.each do |x| <1> + puts x + end + + <1> This is an annotation ====
Expected adoc:
[[samplecode]] .Sample Code ==== [source] -- puts "Hello, world." %w{a b c}.each do |x| <1> puts x end <1> This is an annotation -- ====
The reason - the source code has style 'Example':
<w:p w:rsidR="00000000" w:rsidRDefault="00275A4E"> <w:pPr> <w:pStyle w:val="Example"/> ... </w:pPr> ... <w:r> <w:t>puts "Hello, world."</w:t> </w:r>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Source: #144, #149
Source document: https://github.com/metanorma/mn-samples-iso/tree/main/sources/international-standard
Current docx->adoc conversion result:
Expected adoc:
The reason - the source code has style 'Example':
The text was updated successfully, but these errors were encountered: