hillholliday/craft-user-manual

Craft User Manual allows developers (or even content editors) to provide CMS documentation using Craft's built-in sections (singles, channels, or structures) to create a `User Manual` or `Help` section directly in the control panel.

Maintainers

Package info

github.com/RobErskine/Craft-User-Manual

Issues

Documentation

Type:craft-plugin

pkg:composer/hillholliday/craft-user-manual

Fund package maintenance!

roberskine

Statistics

Installs: 72 385

Dependents: 2

Suggesters: 0

Stars: 85

6.0.0-beta.1 2026-06-29 01:04 UTC

README

CI

Craft User Manual allows developers (or even content editors) to provide CMS documentation using Craft's built-in sections (singles, channels, or structures) to create a "User Manual" or "Help" section directly in the control panel.

Screenshot

Requirements

This plugin requires Craft CMS 4.0.0 or later; or Craft CMS 5.0.0 or later.

Installation

Craft 4 and Craft 5

To install the plugin in your Craft 4 or Craft 5 project, follow these instructions.

  1. Open your terminal and go to your Craft project:

     cd /path/to/project
    
  2. Then tell Composer to load the plugin:

     composer require hillholliday/craft-user-manual
    

Wondering why it says hillholliday and not roberskine as the org? This package was originally submitted as hillholliday, and to preserve the artifacts on Packagist we have kept it as hillholliday.

  1. In the Control Panel, go to Settings → Plugins and click the “Install” button for usermanual.

  2. Select the section the plugin should use as the User Manual page in the CP.

    • (Optional) - Replace the plugin's name to something your user's will understand.
    • (Optional) - Use more than the default body fieldhandle by setting up custom template overrides.
  3. Click the User Manual link in the CP nav.

Craft 3

To install the plugin in your Craft 3 project, follow these instructions.

  1. Open your terminal and go to your Craft project:

     cd /path/to/project
    
  2. Then tell Composer to load the plugin:

     composer require hillholliday/craft-user-manual:2.1.2
    
  3. In the Control Panel, go to Settings → Plugins and click the “Install” button for usermanual.

  4. Select the section the plugin should use as the User Manual page in the CP.

    • (Optional) - Replace the plugin's name to something your user's will understand.
    • (Optional) - Use more than the default body fieldhandle by setting up custom template overrides.
  5. Click the User Manual link in the CP nav.

Configuration

  • All settings may be optionally configured using a config file. The values, contained in config.php, are described below:

pluginNameOverride

Intuitive, human-readable plugin name for the end user.

templateOverride

For more control over the output, you may optionally override the default template.

Path is relative to ../craft/templates/.

section

Entries in this section must have associated urls. When this value is set from the usermanua.php file, it much use the section ID as the value, not the section handle.

enabledSideBar

Enables the sidebar on the manual page

Defaults to true.

managedFolder

(since 5.1.0) Filesystem path to a folder of .md files that the usermanual/sync command imports into the section. Alias-aware (e.g. '@root/help-manual'). Leave null to disable the sync. See Markdown sync below.

readOnlyManaged

(since 5.1.0) When true, section entries that are backed by a markdown file in managedFolder become read-only in the CP — the markdown is the source of truth. Entries with no backing file stay editable. The sync command bypasses this guard while it runs. Defaults to false.

bodyField

(since 5.1.0) Handle of the field that stores the markdown body on the section's entries. Defaults to body. Set this when you use a templateOverride that reads a different field (e.g. helpContent).

Markdown sync (git → CP)

(since 5.1.0) Instead of (or in addition to) editing manual pages in the control panel, you can keep them as version-controlled markdown and push them into the CP with a console command. This keeps documentation diffable, reviewable, and easy to maintain across multiple sites.

  1. Point managedFolder at a folder of .md files (in config/usermanual.php):

    return [
        'section'         => 'secHelp',        // your manual section
        'managedFolder'   => '@root/help-manual',
        'bodyField'       => 'helpContent',    // if not the default `body`
        'readOnlyManaged' => true,             // optional: lock CP editing of synced pages
    ];
  2. Author each page as a .md file with optional YAML frontmatter:

    ---
    title: Getting Started
    slug: getting-started      # optional; defaults to the filename (minus an "NN-" order prefix)
    parent: craft-cms          # optional; slug of the parent page (structure sections)
    order: 10                  # optional; sort hint, used only when first creating the page
    enabled: true              # optional; default true
    delete: false              # optional; true soft-deletes the page with this slug
    ---
    # Getting Started
    
    Markdown body…
  3. Run the sync (e.g. on deploy, on cron, or by hand):

    craft usermanual/sync            # import managedFolder/*.md
    craft usermanual/sync --dry-run  # report what would change, write nothing

The sync is one-way (git → DB) and idempotent — it only saves a page when its title, body, or enabled state actually changed, and it never touches section entries that have no backing file (so a CP-maintained page can live alongside the managed ones). Removals are declarative: ship a file with delete: true to retire an obsolete page.

Rendering the markdown as HTML

The sync stores each file's body verbatim in the configured bodyField, and the default template prints it raw with {{ entry.body }}. That means markdown syntax (headings, bold, lists) and blank-line paragraph breaks are not converted — the browser shows them as literal text / a single run-on line.

To render the markdown as HTML, point the templateOverride setting at a site template that runs the body through Craft's |md filter. Create templates/usermanual-markdown.twig in your project:

{% if entry.fieldValues.body ?? false %}
    {{ entry.body | md }}
{% else %}
    <p>This page has no <code>body</code> content yet.</p>
{% endif %}

…then set it in config/usermanual.php:

'templateOverride' => 'usermanual-markdown',

The default template is intentionally left as raw output so existing installs whose body field already contains rich text / HTML aren't double-processed. Opt into markdown rendering per the override above.

Note: the sync writes through Craft's element API, so the target section's entry type needs an editable Title field — entry types that auto-generate their title (via a Title Format) won't have their titles updated by the sync.

Some notes

  • The plugin currently only pulls in the body field from each entry in the selected section, unless you're using a template override.
  • While the User Manual section works best with Structures, you can certainly get away with using a one-off Single.
  • If you're running Craft Client or Craft Pro make sure your content editors don't have permission to edit whatever section you've selected to use as your User Manual
  • Only sections with entry URLs may be used as your User Manual section.

Thanks

This plugin was inspired by the team over at 70kft for their work on Craft-Help. While their plugin is definitely more flexible in terms of writing custom markdown in separate files, we wanted to create something that would make it easier for anyone to edit documentation without making any changes to the server. This works particularly well for larger projects where more than one person (especially non-devs) are writing documentation for how to use the CMS.

Releases

See CHANGELOG.md for full release history.

We hope this plugin is useful, and we'd love to hear any suggestions or issues you may have. @erskinerob.

Brought to you by Rob Erskine.