Readme.textile 730 B

1234567891011121314151617
  1. h1. Textile Reader Plugin for Pelican
  2. p. This plugin adds support for "Textile markup":https://github.com/netcarver/textile via the "textile egg on pypi":https://pypi.python.org/pypi/textile .
  3. p. Input files are similar in format to Markdown files, in that they start with the post metadata in "Key: value" pairs, one per line. However, the metadata is ended by a line containing only "----", and then all that follows is the body content. If the separator line is missing then the whole file is assumed to be content.
  4. h2. Example Input File
  5. <pre>Title: An Example Textile-formatted Input for Pelican
  6. Date: 2013-08-12
  7. Category: Plugins
  8. Tags: textile, pelican
  9. Author: Joey Coleman
  10. ----
  11. p. Lorem ipsum dolor sit amet...
  12. </pre>