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 |
You can put the plugin here: ./_plugins/org_converter.rb
@stardiviner If you were asking how it works, I believe it leverages org-ruby.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@aaronaddleman I only see it a class and methods definition. I don't know how jekyll automatically use this convert method.
I mean I just need to put org files into
_posts
without doing others things?