Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/getgrav/grav-plugin-markdown-color

Grav Markdown Color Plugin
https://github.com/getgrav/grav-plugin-markdown-color

color grav grav-plugin markdown

Last synced: 6 days ago
JSON representation

Grav Markdown Color Plugin

Awesome Lists containing this project

README

        

# Grav Markdown Color Plugin

The **markdown-color plugin** for [Grav](http://github.com/getgrav/grav) allows you to add output colored text in Markdown:

# Installation

This plugin is easy to install with GPM.

```
$ bin/gpm install markdown-color
```

# Configuration

Simply copy the `user/plugins/markdown-color/markdown-color.yaml` into `user/config/plugins/markdown-color.yaml` and make your modifications.

```
enabled: true
```

# Examples

```
This is {c:red}red text{/c} and this is {c:#000099}blue text{/c}.
```

Will produce the following HTML:

```


This is red text and this is blue text.


```