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
Here is an example program that reproduces the issue:
require'org-ruby'# The following verbatim examples are not rendered using <code> tags.# Both pandoc and org-export-to-file render them using <code> tags.putsOrgmode::Parser.new("=,foo=").to_htmlputsOrgmode::Parser.new("=, foo=").to_htmlputsOrgmode::Parser.new("=foo,=").to_htmlputs# The above issue does not seem to occur if the comma is somewhere in# the middle. These are correctly rendered with <code> tags.putsOrgmode::Parser.new("=foo,bar=").to_htmlputsOrgmode::Parser.new("=foo, bar=").to_htmlputs# The issue mentioned earlier does not seem to occur if we use another# punctuation instead of comma. These are rendered with <code> tags too.putsOrgmode::Parser.new("=;foo=").to_htmlputsOrgmode::Parser.new("=; foo=").to_htmlputsOrgmode::Parser.new("=foo;=").to_htmlputsputsOrgmode::Parser.new("=.foo=").to_htmlputsOrgmode::Parser.new("=. foo=").to_htmlputsOrgmode::Parser.new("=foo.=").to_htmlputsputsOrgmode::Parser.new("=:foo=").to_htmlputsOrgmode::Parser.new("=: foo=").to_htmlputsOrgmode::Parser.new("=foo:=").to_htmlputsputsOrgmode::Parser.new("=-foo=").to_htmlputsOrgmode::Parser.new("=- foo=").to_htmlputsOrgmode::Parser.new("=foo-=").to_htmlputs
Here is an example program that reproduces the issue:
Here is the output:
However, the first three lines of output should be:
The text was updated successfully, but these errors were encountered: