2017 © Pedro Peláez
 

pico-plugin pico-content-editor

A WYSIWYG content editor plugin for Pico CMS

image

nliautaud/pico-content-editor

A WYSIWYG content editor plugin for Pico CMS

  • Wednesday, July 11, 2018
  • by nliautaud
  • Repository
  • 1 Watchers
  • 2 Stars
  • 4 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 3 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

[!IMPORTANT] Hello, this project is not maintained and archived. Its content is probably obsolete., (*1)

Pico Content Editor

A WYSIWYG content editor for Pico CMS., (*2)

  • live editing with ContentTools
  • save to pages or themes files
  • pages metadata editor
  • images upload
  • authentification with PicoUsers

Demo : https://pico.nliautaud.fr/PicoContentEditor, (*3)

Installation

Download the repository, name the main folder PicoContentEditor and copy it into the plugins/ directory of your Pico project., (*4)

plugins/
    PicoContentEditor/
        src/
        vendor/
        ...

Or, if you installed Pico with composer :, (*5)

composer require nliautaud/pico-content-editor

Settings

Settings can be defined in the Pico config file, in a page metadata, or both. The page metadata settings will override the site-wide ones., (*6)

Every setting is optionnal., (*7)

PicoContentEditor:
    show: true          # show/hide the editor
    debug: true         # enable errors reporting
    language: fr        # supported language code
    uploadpath: myfiles # upload directory (images/ by default)
    # custom ContentTools library location (local files by default)
    ContentToolsUrl: https://cdn.jsdelivr.net/npm/ContentTools

The languages supported are listed in the translations/ directory., (*8)

Usage

Include the editor files by adding the following tag at the end of your theme, before the closing </body>., (*9)

{{ content_editor }}

Define editable regions in your pages by using HTML blocks with the attributes data-editable, data-name and a closing comment end-editable. data-name should be unique accross a single output., (*10)

---
Title: A page with editable content
---

The following content is editable :



Edit me!, (*11)

This one will be converted back to markdown on saving :
- One - Two - Three

Every content inside those tags will be editable by visiting the page., (*12)

Metadata editor

To add an editor for the pages metadata, use the following tag after the opening of <body> :, (*13)

{{ content_editor_meta }}

An editable text area will contain the page frontmatter., (*14)

Editable regions in themes and templates

You can create editable blocks in themes, just point to the source file with the attribute data-src., (*15)

For exemple, the following code could be the content of a footer.twig file in your theme., (*16)

<footer id="footer">
    <div data-editable data-name="footer" data-src="themes/mytheme/footer.twig">
        <p>Edit me !</p>
    </div><!--end editable-->
</footer>

Fixed editable elements

To make fixed elements with an editable inner content, use data-fixture instead of data-editable :, (*17)

<h1 data-fixture data-name="editable-header" data-src="themes/mytheme/header.twig">
Edit me !
</h1><!--end editable-->

Only inline tools will be allowed in this context : Bold, Italic, ..., (*18)

Unrecognized tags can be defined with data-ce-tag, for example for a fixed editable link and a fixed editable image :, (*19)

<a data-fixture data-name="my-editable-link" data-ce-tag="p" href="/test">
Editable link
</a>



Some image

See ContentTools for further info., (*20)

Files upload

By default, files uploaded from the editor are saved in an images/ directory located at the root of the Pico installation, next to content/. A custom location can be defined in the settings., (*21)

The upload directory should exist and be writeable. The plugin will not create it., (*22)

Authentification

If the PicoUsers plugin is installed and detected, actions are automatically restricted to authorized users., (*23)

Right Desc
PicoContentEditor All rights below.
PicoContentEditor/save Editing regions in pages and themes source files.
PicoContentEditor/upload Uploading files on the server.

Configuration example of PicoUsers :, (*24)

users:
    admin: $2y$10$Ym/XYzM9GsCzv3xFTiCea..8.F3xY/BpQISqW6/q3H41SmIK1reZe
    editors:
        bill: $2y$10$INwdOkshW6dhyVJbZYVm1..PxKc1CQTRG5jF.UaynOPDC6aukfkaa
rights:
    PicoContentEditor: admin
    PicoContentEditor/save: editors

The Versions

11/07 2018

dev-master

9999999-dev http://picocms.org/

A WYSIWYG content editor plugin for Pico CMS

  Sources   Download

MIT

The Requires

 

editor pico picocms picocms-plugin pico-content-editor

11/07 2018

dev-refactor_abstract

dev-refactor_abstract http://picocms.org/

A WYSIWYG content editor plugin for Pico CMS

  Sources   Download

MIT

The Requires

 

editor pico picocms picocms-plugin pico-content-editor