pstaender/silverstripe-markdown-parser

Transforms markdown and markdown extra to HTML and vice versa

Installs: 519

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 1

Open Issues: 1

Type:silverstripe-vendormodule

1.1.2 2023-01-22 07:31 UTC

This package is auto-updated.

Last update: 2024-03-22 09:52:00 UTC


README

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