Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 869 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 869 Bytes

Markdown Parser for SilverStripe

Converts any string field to Markdown and vice versa.

Requirements

  • Silverstripe 4+

Installation

Install with composer:

  $ composer require pstaender/silverstripe-markdown-parser

Usage

After flushing your cache you can use the convertes in any template:

<article>
  $Content.markdown
  $Content.markdownExtra
  <p>
    $Title.inlineMarkdown
  </p>
  <p>
    $Title.inlineMarkdownExtra
  </p>
  <pre>
  $MyHTMLContent.htmlToMarkdown
  </pre>
</article>

Configuration

Every converting should work as expected out of the box.

Under the hood the parsers Parsedown, ParsedownExtra and League\HTMLToMarkdown\HtmlConverter are used for conversion. Anyhow, if you need to different parsing options you can hook any parser with a custom Injector configuration.

License

MIT License