Wishlist: support Org?
Comments (15)
-
Georg Brandl repo owner
-
Tim Hatch
If you can point us to something describing the syntax, then sure.
-
Andreas Tjärnberg
Hi, I hope this is something useful to to you for implementing support for org-mode sytax.
There is an issue here on BB that at least show some traction for this here, so hopefully you can find some time to add it.
adding a link to what is org's own parser. May be it is helpful to you, org-elements
Regards, A
-
Kevin Brubeck Unhammer
https://github.com/gollum/gollum/blob/ab42c0c0dfc9879f73312ad2c804875b510a414c/lib/gollum/public/gollum/javascript/editor/langs/org.js seems to be gollum's org-mode handling
-
Rusi Mody
@Tim Hatch: If you can point us to something describing the syntax, then sure.
-
Tim Hatch
I agree this would be useful, thanks for the links. I'll try to get to it for the April 2016 release.
-
German Diago Gomez
I would like to get support for this :) Github does and it is very handy.
-
pls add i thought it is already supported
-
Malcolm Cook
+1, and, an implementation suggestion:
pandoc can be used to convert both markdown and org to html on the fly.
The following is an extract from an Apache .config file that allows for such conversions when docs are served by Apache. I imagine something similar might work for bitbucket configuration.
# mec: Interpret markdown files to html on the fly ExtFilterDefine markdown-to-html mode=output \ intype=text/markdown outtype=text/html cmd="/n/local/bin/pandoc -f markdown -t html" ## --email-obfuscation=references SetOutputFilter markdown-to-html AddType text/markdown .md ##.markdown .md .Rmd # mec: Interpret orgmode files to html on the fly ExtFilterDefine orgmode-to-html mode=output \ intype=text/orgmode outtype=text/html cmd="/n/local/bin/pandoc -f org -t html" ## --email-obfuscation=references SetOutputFilter orgmode-to-html AddType text/orgmode .org
-
Scott Harney
+1 for this addition. thanks
-
V SD
please add this. org-mode is awesome. thanks!
-
Dig Gashinsky
(+ 1)
-
Kaushal Modi
+1 please.
I am using Pygments with Hugo static site generator, and at the moment the Org source blocks are not recognized as code blocks.
-
Amitthk
+1
-
Kaushal Modi
I just implemented the Org mode syntax highlighting in the Go Chroma syntax highlighter (whose syntax is very much similar to Pygments'). Folks interested in Org mode syntax highlighting can switch to Chroma or port over that lexer from that PR to Pygments :)
- Log in to comment