An extension of the mkdocs-simple-plugin that adds syntax for including content from other files http://studioinfinity.org/semiliterate
Go to file
Glen Whitney 0b0c458011
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is passing Details
continuous-integration/drone/tag Build is passing Details
refactor: Build on top of released mkdocs-simple-plugin v0.4.0 (#8)
Includes documentation updates, particularly for installation.
  Removes a now-duplicate parameter.
  Adds project metadata.
  Should be ready for release.

  Resolves #7.

Co-authored-by: Glen Whitney <glen@studioinfinity.org>
Reviewed-on: #8
Co-Authored-By: Glen Whitney <glen@nobody@nowhere.net>
Co-Committed-By: Glen Whitney <glen@nobody@nowhere.net>
2021-02-09 06:26:39 +00:00
mkdocs_semiliterate refactor: Build on top of released mkdocs-simple-plugin v0.4.0 (#8) 2021-02-09 06:26:39 +00:00
tests refactor: Adjust again to latest 'simple' commit 2021-01-15 09:44:25 -08:00
.drone.yml refactor: Build on top of released mkdocs-simple-plugin v0.4.0 (#8) 2021-02-09 06:26:39 +00:00
.gitignore chore: set up automated deployment 2021-01-09 20:17:20 -08:00
LICENSE Initial commit 2021-01-08 04:10:06 +00:00
README.md refactor: Build on top of released mkdocs-simple-plugin v0.4.0 (#8) 2021-02-09 06:26:39 +00:00
mkdocs.yml refactor: Build on top of released mkdocs-simple-plugin v0.4.0 (#8) 2021-02-09 06:26:39 +00:00
pyproject.toml chore: initialize setuptools project 2021-01-07 22:39:40 -08:00
setup.cfg refactor: Build on top of released mkdocs-simple-plugin v0.4.0 (#8) 2021-02-09 06:26:39 +00:00

README.md

MkDocs semiliterate Plugin

This plugin for MkDocs is an extension of Allison Thackston's excellent mkdocs-simple-plugin. It allows you to include content from one file into another (via {! ... !} syntax), using exactly the same extraction specification as the simple plugin already uses for identifying documentation in source files.

Rationale

Time and trends have not validated Knuth's original vision of "literate programming" as a mainstream practice. Nevertheless, there remain significant advantages to incorporating all documentation, including user-guide-style narrative, into the source code for a project. These advantages include ease of maintenance and synchronization of code and documentation, and opportunities to make the ensemble of your code and documentation more DRY. Thus, it's worth using a "semiliterate" programming style, in which

  • code is arranged as dictated by best software engineering practices
  • documentation is co-located in the same files next to the implementing code
  • and tools are provided for extracting and assembling that documentation into readable form.

*[DRY]: Don't Repeat Yourself -- a coding philosophy of creating a single authoritative location for each piece of information.

The simple plugin goes a long way toward creating a semiliterate programming environment. However, in creating narrative documentation, it's very useful to be able to quote or incorporate content -- whether that be documentation blocks or code examples -- from one file into another. To satisfy that need, this semiliterate plugin extends (i.e, literally inherits from) the simple plugin and adds a syntax for such inclusion.

With a few other small ease-of-use tweaks (documented in the Usage section), this extended plugin aims to produce a lightweight but comprehensive semiliterate programming environment. The documentation site is, of course, produced by MkDocs using the semiliterate plugin.

License

This software is licensed under Apache 2.0.