No commit activity in last 3 years
No release in over 3 years
This gem is a Jekyll plugin that adds an anchor link to the beginning of paragraphs in a rendered site.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

 Project Readme

This is a converter for Jekyll sites that adds a pilcrow anchor link to the beginning of paragraphs.

With this converter, this markdown

This is a paragraph!

...generates this HTML...

<p id='123abc'>
  <a href='#123abc' class='pilcrow'></a>
  This is a paragraph!
</p>

To add this to your Jekyll site, just add this to your Gemfile and you're set:

group :jekyll_plugins do
  gem 'jekyll_pilcrow_converter'
end

You can build the example site in this repo to see the converter in action.