Created
August 17, 2020 03:47
-
-
Save Kronopath/c8935aa383f427bae7313e881f189a4e to your computer and use it in GitHub Desktop.
Jekyll plugin for correct sentence spacing, see https://kronopath.com/blog/the-correct-way-to-do-sentence-spacing/
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
def convert_to_sentence_spacing(content) | |
content.gsub(/([.?!][)"]?) /, '\1 ') | |
end | |
Jekyll::Hooks.register :posts, :pre_render do | post | | |
if post["sentence_spacing"] then | |
post.content = convert_to_sentence_spacing(post.content) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment