2017 © Pedro Peláez
 

silverstripe-vendormodule silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

image

axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  • Tuesday, February 27, 2018
  • by axllent
  • Repository
  • 1 Watchers
  • 5 Stars
  • 2,060 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 11 Versions
  • 8 % Grown

The README.md

Github Flavoured Markdown for Silverstripe

This module adds a field and a data type that allows for Markdown editing in the CMS using the Github Flavoured Markdown parser Parsedown to render the html., (*1)

It includes the Ace editor for CMS editing., (*2)

Requirements

  • Silverstripe ^4.0 || ^5.0

Installation

composer require axllent/silverstripe-gfmarkdown, (*3)

Usage

Use the Markdown data type as your fields data type, and the MarkdownEditor field in the CMS for editing., (*4)

Example:

<?php

use Axllent\Gfmarkdown\Forms\MarkdownEditor;

class MyPage extends Page
{
    public static $db = array(
        'MarkdownContent' => 'Markdown'
    );

    public function getCMSFields()
    {
        $fields = parent::getCMSFields();

        // If you want the Ace markdown editor in the CMS
        $fields->addFieldToTab('Root.Main',
            MarkdownEditor::create('MarkdownContent')
                ->setTheme('github')            // set theme
                ->setRows(20)                   // set number of rows in CMS
                ->setWrap(false)                // disable word wrapping
                ->setHighlightActiveLine(true)  // enable line highlighting
        );

        return $fields;
    }
}

Silverstripe Template:

<div class="content">
    $MarkdownContent  <!-- Will show as rendered html -->
</div>

The Versions

27/02 2018

dev-master

9999999-dev https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

MIT The MIT License (MIT)

The Requires

 

markdown silverstripe

27/02 2018

2.2.5

2.2.5.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

MIT

The Requires

 

markdown silverstripe

06/02 2018

dev-silverstripe3

dev-silverstripe3 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

MIT The MIT License (MIT)

The Requires

 

markdown silverstripe

17/10 2017

2.2.4

2.2.4.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

The MIT License (MIT)

The Requires

 

markdown silverstripe

08/08 2017

2.2.3

2.2.3.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

The MIT License (MIT)

The Requires

 

markdown silverstripe

03/08 2017

2.2.2

2.2.2.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

The MIT License (MIT)

The Requires

 

markdown silverstripe

30/06 2017

2.1.2

2.1.2.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

The MIT License (MIT)

The Requires

 

markdown silverstripe

27/06 2017

2.1.1

2.1.1.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

The MIT License (MIT)

The Requires

 

markdown silverstripe

27/06 2017

2.1.0

2.1.0.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

The MIT License (MIT)

The Requires

 

markdown silverstripe

29/01 2017

2.0.0

2.0.0.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

The MIT License (MIT)

The Requires

 

markdown silverstripe

21/12 2015

1.0.0

1.0.0.0 https://github.com/axllent/silverstripe-gfmarkdown

GitHub Flavored Markdown editing & rendering using Parsedown

  Sources   Download

The MIT License (MIT)

The Requires

 

markdown silverstripe