You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
Chimo e094b4b326 Normalize linebreaks 6 years ago
actions On/Off setting per-user 7 years ago
css Revert "[WIP] Per-notice markdown setting" 6 years ago
forms On/Off setting per-user 7 years ago
lib Render bio with markdown in ProfileBlock 6 years ago
.gitignore gitignore: Ignore vendor folder 8 years ago
LICENSE Add license 7 years ago
MarkdownPlugin.php Normalize linebreaks 6 years ago
README.md readme: Add 'install' section 6 years ago
composer.json Add GFM support via config.php 7 years ago
composer.lock Add GFM support via config.php 7 years ago

README.md

Use Markdown in your GNU social notices

Installation

  1. Navigate to your /local/plugins directory (create it if it doesn't exist)
  2. git clone https://github.com/chimo/gs-markdown.git Markdown

Activate the feature for your user account

Because the markdown plugin changes the way notices are rendered significantly, it is disabled by default.

Users can activate the plugin for their account in the "Settings > Markdown" section.

Built-in markdown parser

Make sure the files are in a folder called Markdown if they're not already
Put the folder in your /plugins/ directory
Tell /config.php to use it with:

    addPlugin('Markdown');

You can now use markdown syntax in your notices.

Github Flavored Markdown

If you want to use Github Flavored Markdown instead of the built-in markdown library, run composer install in the plugin directory (assuming you have composer installed).

And tell the plugin to use GFM by using the following in your /config.php:

    addPlugin('Markdown', array('parser' => 'gfm'));

You can now use GFM syntax in your notices.