nichestudio / acf-markdown
Markdown-enhanced ACF textarea
Package info
github.com/nichestudio/ACF-Markdown
Type:wordpress-plugin
pkg:composer/nichestudio/acf-markdown
1.1.1
2018-05-21 07:17 UTC
Requires
- php: >=5.4
- cebe/markdown: ^1.2
This package is auto-updated.
Last update: 2026-02-18 22:08:03 UTC
README
Markdown-enhanced ACF textarea.
Works with repeaters and even frontend forms using Advanced Forms.
Uses
- Inscryb/inscryb-markdown-editor for the editor
- cebe/markdown to render the output
Requires:
- PHP >=5.4
- Composer
- ACF v5
Installation
composer require nichestudio/acf-markdown
Customise Editor
Override the Inscryb editor options:
acf.add_filter( 'niche_markdown/inscrybmde_args', function ( args, field ) { if ( field.o.id === 'field_xxxx' ) { args[ 'placeholder' ] = 'Enter your content using Markdown'; } return args; } );