Skip to content

Instantly share code, notes, and snippets.

@jbubriski
Created March 7, 2017 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbubriski/176fc454a10acaf353ed90ea01c325d4 to your computer and use it in GitHub Desktop.
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.
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