Popularity
6.4
Growing
Activity
0.0
Stable
110
4
7

Programming language: Elixir
License: Apache License 2.0

pardall_markdown alternatives and similar packages

Based on the "Static Page Generation" category.
Alternatively, view pardall_markdown alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of pardall_markdown or a related project?

Add another 'Static Page Generation' Package

README

PardallMarkdown

Module Version Total Download Last Updated Donate using PayPal Become a patron

Table of Contents

Introduction

PardallMarkdown is a reactive publishing framework and engine written in Elixir. Instant websites and documentation websites.

As opposed to static website generators (such as Hugo, Docusaurs and others), with PardallMarkdown, you don't need to recompile and republish your application every time you write or modify new content. The application can be kept running indefinitely in production, while it watches a content folder for changes and the new content re-actively gets available for consumption by your application.

Video Demo and Tutorial

See PardallMarkdown in action and learn how to use it by following this video:

Features

  • Filesystem-based, with Markdown and static files support.
    • Markdown files are parsed as HTML.
  • FileWatcher, that detects new content and modification of existing content, which then automatically re-parses and rebuilds the content.
    • There is no need to recompile and redeploy the application nor the website, the new content is available immediately (depends on the interval set via :recheck_pending_file_events_interval, see below).
    • Created with Phoenix LiveView and Phoenix Channels in mind: create or modify a post or a whole new set of posts and they are immediately published in a website. Check out the demo repository.
  • Support for the content folders outside of the application, this way, new content files can be synced immediately from a source location (for example, your computer), and then picked up by the FileWatcher.
  • Automatic creation of table of contents from Markdown headers.
  • Infinite content hierarchies (categories and sub-categories, sections and sub-sections).
    • Different sets of custom hierarchies and post sets. For example, a website with Documentation, Blog, News and a Wiki, which in turn, have their own sub-hierarchies.
    • Custom sorting rules per hierarchy set. For example, posts in the Documentation hierarchy can be sorted by priority, Blog posts by date and Wiki posts by title.
  • Automatic creation of taxonomy trees and content tress.
    • Separate content trees, per root hierarchy are also created. For example, a content tree for the Documentation hierarchy, which contains links to all sub-hierarchies and posts.
  • Automatic creation of post navigation links (next and previous posts).
  • Freely embeddable metadata into posts as Elixir maps.
  • Hierarchy archive lists.
  • All the content and indexes are kept in an in-memory cache (Elixir's ETS).

Use cases

  • Blogs
  • Documentation websites
  • Wikis
  • FAQs
  • Any kind of website actually? Even e-commerce websites, where you can use PardallMarkdown's parsed content as product pages, and more.
  • Any application that needs content?

Usage in Elixir OTP applications

Add dependency and application into your mix.exs:

defp deps do
[{:pardall_markdown, "~> 0.1.3"} ...]
end

def application do
[extra_applications: [:pardall_markdown, ...], ...]
end

Add the configuration (all keys are required) into config.exs or in any of the environment specific configuration files:

config :pardall_markdown, PardallMarkdown.Content,
  # Where all of the uncompiled assets and content will live on
  # (the Markdown files and any static asset). In this path
  # you will create and update content.
  #
  # This can be any relative or absolute path,
  # including outside of the application.
  root_path: "/home/documents/content",

  # Name of the folder inside `root_path:`, that contains static assets,
  # those files won't be parsed.
  static_assets_folder_name: "static",

  # ETS tables names
  cache_name: :content_cache,  
  index_cache_name: :content_index_cache,

  # Site name to be append into page titles, after the post or page title
  site_name: "Pardall Markdown",

  # How often in ms the FileWatcher should check for
  # new or modified content in the `root_path:`?
  recheck_pending_file_events_interval: 10_000,

  # Should the main content tree contain a link to the Home/Root page ("/")?
  content_tree_display_home: false,

  # Should internal <a href/> links be converted to `Phoenix.LiveView` links?
  # If you are using PardallMarkdown with a `Phoenix.LiveView` application, you
  # definitely want this as `true`.
  convert_internal_links_to_live_links: true,

  # Callback to be called every time the content and the indexes are rebuilt.
  #
  # For example, you can put a reference to a function that calls Endpoint.broadcast!:
  # notify_content_reloaded: &MyPhoenixApp.content_reloaded/0
  #
  # Definition:
  # def content_reloaded do
  #   Application.ensure_all_started(:my_phoenix_app) # Recommended
  #   MyPhoenixApp.Endpoint.broadcast!("pardall_markdown_web", "content_reloaded", :all)
  # end
  notify_content_reloaded: &MyApp.content_reloaded/0

Usage with Phoenix applications

Alongside the main required configuration, if you want to serve static files from the content folder, add a Plug.Static into your Phoenix.Endpoint configuration that refers to the static assets folder (:static_assets_folder_name):

plug Plug.Static,
    at: "/",
    from: Content.Utils.root_path(),
    gzip: true,
    only: [Content.Utils.static_assets_folder_name()]

Check the demo application for a complete Phoenix application sample, including sample content. Or watch the PardallMarkdown Phoenix LiveView tutorial video.

API

Content is retrieved with PardallMarkdown.Repository. Check details and instructions in the docs.

def get_all_posts(type \\ :all)
def get_all_links(type \\ :all)
def get_taxonomy_tree()
def get_content_tree(slug \\ "/")
def get_all_published
def get_by_slug(slug)
def get_by_slug!(slug)

Models

The content returned by the API is of the types:

  • PardallMarkdown.Content.Post (docs)
  • PardallMarkdown.Content.Link (docs)
  • PardallMarkdown.Content.AnchorLink (docs)

Slug: unique identifiers for posts, pages, categories and trees

Every piece of content has an unique identifier, which is simply the content URL slug, example: "/blog", "/docs/getting-started/how-to-install. Slugs always have a prepended slash, but never a trail slash.

The slug is used to get content in all forms using PardallMarkdown.Repository functions: individual pieces of content, trees and archives. The slug is also how the content is identified in cache.

Slugs are automatically generated from file paths. For example, a Markdown file named: "/blog/news/Top news of_today.md" will have the slug: "/blog/news/top-news-of-today".

Required Metadata Map in every Markdown file

Every Markdown file must contain a metadata/configuration Elixir Map at the top, separated by --- and a line break, which is similar to Front Matter.

The following configuration properties are available (all optional):

  • :title: the post title. If not provided, a title will be generated from the post slug.
  • :date: the date or date-time to be considered for the post, string, ISO format. If not provided, the file modification date will be considered as the post date.
  • :published: a post without published: true set, will be considered draft.
  • :summary: post description or short content.
  • :position: if the post topmost taxonomy has a :sort_by rule set to :position, this is the value that will be used to sort the post (see below).
  • Any other extra property, which will be saved into the post's PardallMarkdown.Content.Post.metadata field.

Example:

%{
    title: "PardallMarkdown public release",
    date: "2021-09-11", # or "2021-09-11T14:40:00Z"
    published: true,
    summary: "This post announces the launch of the project",
    position: 0,
    my_custom_data: :used_by_my_custom_application
}
---
Content goes here

If you want to use automatic values, the map can be empty, but it's still mandatory:

%{
}
---
Content goes here

Configuration _index.md files

Inside top level taxonomies, a _index.md can be created which can contain taxonomy configuration (via a metadata map) as well an optional PardallMarkdown.Content.Post content for the taxonomy archive page, the contents of this file are saved into PardallMarkdown.Content.Link.index_post.

The _index metadata map may contain:

  • :title: override taxonomy title/name.
  • :sort_by: children posts sorting rules (for all posts inside all levels down inside this taxonomy). Accepted values: :title | :date | :position.
  • :sort_order: accepted values: :desc | :asc.
  • Any other extra property, which will be saved into the taxonomy's PardallMarkdown.Content.Link.index_post.metadata field.

Notice that _index files are not available via a slug call, i.e. "/taxonomy/-index", instead you must get the taxonomy slug and access the file and post data via PardallMarkdown.Content.Link.index_post.

Posts and Pages

Every Markdown file is a post (a piece of content), but PardallMarkdown considers a file in the root folder "/" as a "page" and files inside any folder, at any hierarchy level, a "post". Pages are added to the content tree side by side with root hierarchies.

Structurally they are the same, the only difference is their property is set to PardallMarkdown.Content.Post.type: :post | :page.

Examples:

  • Pages: single unique posts that can refer to fixed data, such as a Contact or About page (/contact, /about, etc).
  • Posts: every other piece of content, including blog posts, documentation pages, wiki pages, so on and so forth, which are inside at least one level of taxonomy, example: "/docs/introduction" or "/wiki/languages/english/verbs/to-eat".

Content Hierarchies, Taxonomies, Categories and Sections

Categories, Taxonomies and Website Sections all refer to the same thing: the hierarchy of folders in which the posts are contained in, which in turn define post sets or group of posts.

  • A taxonomy/category/section/group name comes from the folder name, where each word is capitalized.
  • Hierarchies are defined from nested folders.
  • A top level taxonomy is a first level folder, example: "/blog", hence the example "/blog/news/art" has "/blog" as its top level taxonomy/parent.
  • Posts are saved individually (to be retrieved with PardallMarkdown.Repository.get_by_slug("/a/post/slug")) and under their taxonomies and taxonomies' hierarchy. A taxonomy archive (all posts of a taxonomy) and its hierarchy are contained in PardallMarkdown.Content.Link.children when the taxonomy is retrieved by:
    • PardallMarkdown.Repository.get_by_slug("/taxonomy/inner-taxonomy")
    • PardallMarkdown.Repository.get_content_tree("/taxonomy/inner-taxonomy")
    • PardallMarkdown.Repository.get_content_tree("/") - root, which contains all taxonomies, their posts and hierarchy.
  • When retrieving a taxonomy by slug with PardallMarkdown.Repository.get_by_slug("/taxonomy/inner-taxonomy") the taxonomy :children contains all posts from all of its innermost taxonomies :children.
    • For example, the post: "/blog/news/city/foo" appears inside the :children of 3 taxonomies: "/blog", "/blog/news" and "/blog/news/city".
  • On the other hand, taxonomies in the content tree retrieved with PardallMarkdown.Repository.get_content_tree/1 contains only their immediate children posts.
    • For example, the post: "/blog/news/city/foo" appears only inside the :children of its defining taxonomy: "/blog/news/city".

Consider the example content directory structure:

content/
|   about.md
|   contact.md
└───blog/
|   |   _index.md
|   |   post1.md
|   |   post2.md
|   └───art/
|   |   └───traditional/
|   |       └───oil-paintings/
|   |           └───impressionism/
|   |               └───claude-monet/
|   |               └───pierre-auguste-renoir/
|   └───news/
|       |   .. posts..
|       └───city/
|       |   |   ..posts..
|       └───worldwide/
|           |   ..posts..
└───docs/
|   |   _index.md
|   |   getting-started.md
|   └───setup/
| ...more and more...

Also, consider that the docs/_index.md, defines a :title for the docs folder, which will override the default naming convention.

The following categories will be created:

["Blog"]
["Blog"]["Art]
["Blog"]["Art]["Traditional"]
["Blog"]["Art]["Traditional"]["Oil Paintings"]
["Blog"]["Art]["Traditional"]["Oil Paintings"]["Impressionism"]
["Blog"]["Art]["Traditional"]["Oil Paintings"]["Impressionism"]["Claude Monet"]
["Blog"]["Art]["Traditional"]["Oil Paintings"]["Impressionism"]["Pierre Auguste Renoir"]
["Blog"]["News"]
["Blog"]["News"]["City]
["Blog"]["News"]["Worldwide]
["Documentation"]
["Documentation"]["Setup]

Trees

Three types of trees are generated every time the content is recompiled.

Those trees can be used to navigate content, can be printed as a list of links, etc. Check the demo project for multiple examples of how to use the trees and HTML helpers to generate links from the trees.

The trees are:

Taxonomy Tree

A tree with all the taxonomies, sorted by title, and nested accordingly.

The taxonomy tree can be retrieved via PardallMarkdown.Repository.get_taxonomy_tree/0.

Content Trees

A tree containing all the taxonomies, but with their children posts nested:

  • Posts are placed below their innermost taxonomy.
  • Posts are sorted by their topmost taxonomy sorting rules.

Multiple content trees are created. A single "master" content tree, available by the root slug "/" and a content tree for each taxonomy level. For example, a content tree for the Documentation hierarchy, which contains links to all sub-hierarchies and posts.

Content trees can be retrieved via PardallMarkdown.Repository.get_content_tree/1.

Post navigation

Inside all posts is inserted a link the the previous and the next posts in the tree, after the current post. The links are in PardallMarkdown.Content.Post.link.previous and PardallMarkdown.Content.Post.link.next.

Table of Contents

Each post contain their own automatically generated Table of Contents tree, available inside the post's PardallMarkdown.Content.Post.toc field.

Back pressure

TODO: describe FileWatcher back pressure mechanism.

FAQ

How to integrate it with Phoenix and Phoenix LiveView?

There is a demo project in a separate repository: PardallMarkdown Phoenix Demo.

The demo project also has HTML helpers to print the generated tables of contents, taxonomy and hierarchy trees as HTML <ul/>> lists with <a/> links.

PardallMarkdown vs static website generators (Hugo, Docusaurs, etc)

Every time you make a change to the content or add new content, static website generators require you to rebuild and republish the whole application.

As seen in the Introduction, with PardallMarkdown the application can be kept running indefinitely in production, and the new content re-actively gets available for consumption by your application.

PardallMarkdown vs NimblePublisher

NimblePublisher is an Elixir framework that parses Markdown files at compile time and make them available all at once in an Elixir's module attribute.

If you need to modify or write new content, you have to recompile and republish the application. That's the only feature provided by NimblePublisher.

If you intend to have a plain blog page, with few posts, without hierarchies, taxonomies, categories, sorting and navigation, NimblePublisher is more than enough, and PardallMarkdown may be overkill for you.

By the way, the idea of adding an Elixir map with metadata inside Markdown files and the code to parse it comes from a piece of code from NimblePublisher's code (inside PardallMarkdown.FileParser.parse_contents).

How to sync content to PardallMarkdown?

PardallMarkdown watches for changes from a given content folder (configured via :root_path), but there's nothing special about the content folder. Just add and sync content to the content folder normally.

How to write Markdown locally in your computer and publish it immediately to a PardallMarkdown application or website?

As written above, PardallMarkdown watches for changes in a folder. This way, you can sync content from a local source to a remote destination via any way as you would do with or without PardallMarkdown, for example: Git, SyncThings, scp, etc.

Example:

  • Create a folder in your computer
  • Create a folder in the server that will run your PardallMarkdown powered application
  • Install and configure SyncThings to sync between the two machines
  • Start your PardallMarkdown server application in the remote location
  • Start SyncThings
  • Write locally and see the magic happens! Content appears almost immediately in your application / website.

If you don't want to use SyncThings, you can have a custom Git repository just for the content and a hook that mirrors the content to a folder watched by your PardallMarkdown configuration.

Does it require a database?

No.

Why does it use Ecto?

  • Being used for Post validation and a lot of embedded_schemas and the power of cast_embed.
  • If needed, an optional database layer may be added in the future.

Roadmap

  • [ ] Add support for content folders inside a S3 bucket, which will then notify a PardallMarkdown application with webhooks.
  • [ ] Add support to watch external sources for new content, such as GitHub repositories (#31).
  • [ ] Add support for FrontMatter post metadata with YAML, alongside Elixir maps (#30).

Sponsors and Donations

You can support my open-source contributions and this project on Patreon or with a PayPal donation. Patrons and donors of any tier will have their name listed here. Patrons of the Sponsors tier or higher, can also have a link and a logo listed here.

  • Mike King

Copyright License

Copyright 2021 Alfred Reinold Baudisch (alfredbaudisch, pardall)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Additional notices

  • It's suggested that applications using this software mention this project name with a link to this project repository. You can put it anywhere in your application, for example, in a website footer or About page: Powered by [PardallMarkdown](https://github.com/alfredbaudisch/pardall_markdown).
  • PardallMarkdown uses a snippet of code from nimble_publisher, Copyright 2020 Dashbit, licensed under Apache License, Version 2.0.


*Note that all licence references and agreements mentioned in the pardall_markdown README section above are relevant to that project's source code only.