Skip to content
This repository has been archived by the owner on Apr 6, 2018. It is now read-only.

TheFox/jekyll-bigfootnotes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Jekyll Bigfootnotes Plugin

While kramdown uses only superscript numbers to link to the footnotes this plugin enables big footnote links.

Instead of

Lorem ipsum dolor sit amet1

you get

Lorem ipsum dolor sit amet[1]

Note: Consider that this is only a shitty workaround for the kramdown Big Footnotes feature. See also Issue #167 at the kramdown project.

Install

  1. Clone the project from https://github.com/TheFox/jekyll-bigfootnotes.git.

  2. Copy bigfootnotes.rb to the Jekyll _plugins directory.

  3. Add the following lines to your _config.yml:

     markdown: KramdownBigfootnotes
    

Configuration

markdown: KramdownBigfootnotes
kramdown:
    footnote_big: true
    footnote_prefix: '['
    footnote_suffix: ']'

footnote_big, footnote_prefix and footnote_suffix are optional. You can also use all other standard kramdown options.

Related Links

License

Copyright (C) 2014 Christian Mayer http://fox21.at

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.