org-ruby icon indicating copy to clipboard operation
org-ruby copied to clipboard

This gem contains Ruby routines for parsing org-mode files. The most significant thing this library does today is convert org-mode files to HTML or textile.

Results 12 org-ruby issues
Sort by recently updated
recently updated
newest added

Adding support for table of contents would be great!

I was guided here from `Github` tickets. Issue was: Related: [How can I apply code sample inside [] brackets in org-mode](https://emacs.stackexchange.com/a/69486/18414) In the `markdown-mode` I am able to do following:...

I would expect that \~'hello world'\~ would render as `'hello world'` but instead it gets rendered literally. Without the single quotes rendering works correctly, but the single quotes seem to...

Support for [macro replacement](https://orgmode.org/manual/Macro-Replacement.html) is missing

pygments.rb was initially supported because it was the default for multiple platforms (including github and jekyll at the time). Currently [rouge](https://github.com/rouge-ruby/rouge) is the default, so it'd be nice to add...

As described by Bastien Guerry in https://github.com/bdewey/org-ruby/issues/73 , we need to support `#+begin_export html`. Here is the code to do so! Thanks

Fix deprecated spec methods (i.e `.have`, `be_true`, ...)

Since Org 9.0, `#+begin_html` is no longer supported, users need to use `#+begin_export html" instead. As far as I can test, org-ruby does not recognize the new syntax. Ideally, both...

Currently it doesn't support $$ $$, which is supported by org-mode html exporting with jsmath support.

Org mode allows to link to another heading in the document by using bare double brackets ``` org This links to [[Another Header]]! * Another Header ``` This should come...