Last active
February 2, 2020 07:36
-
-
Save abhiyerra/7377603 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Jekyll | |
# Convert org-mode files. | |
require 'org-ruby' | |
class OrgConverter < Converter | |
safe true | |
def setup | |
# No-op | |
end | |
def matches(ext) | |
ext =~ /org$/i | |
end | |
def output_ext(ext) | |
".html" | |
end | |
def convert(content) | |
setup | |
Orgmode::Parser.new(content).to_html | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can put the plugin here: ./_plugins/org_converter.rb