Created
March 7, 2017 20:43
-
-
Save jbubriski/176fc454a10acaf353ed90ea01c325d4 to your computer and use it in GitHub Desktop.
Test Jekyll Plugin. Place in default _plugins directory. Then run `jekyll build` and you should see some output from the plugin.
This file contains hidden or 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 | |
class TestGenerator < Generator | |
def generate(site) | |
print "Testing generator\n" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment