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
# An example Jekyll converter. Utilizes the new plugin system. | |
# | |
# | |
# 1. Make a _plugins directory in your jekyll site, and put this class in a file there. | |
# 2. Any file in the _posts directory ending in .upcase will be processed using this converter. | |
module Jekyll | |
class UpcaseConverter < Converter | |
safe true | |
priority :low | |
def matches(ext) | |
ext =~ /upcase/i | |
end | |
def output_ext(ext) | |
".html" | |
end | |
def convert(content) | |
content.upcase | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Will it run before of after Markdown/Kramdown parsing?