Giter Club home page Giter Club logo

metalsmith-markdown-partials's Introduction

metalsmith-markdown-partials

A Metalsmith plugin that enables the use of Markdown partials.

metalsmith: plugin npm: version license: ISC

Markdown fragments are inserted into the contents of a page markdown file by replacing an include marker with markdown partials. This allows for modular markdown and promotes reuse of content.

Installation

$ npm install --save metalsmith-markdown-partials

Usage

var mdPartials = require('metalsmith-markdown-partials');

...
.use(mdPartials({
    libraryPath: './markdown-partials/',
    fileSuffix: '.md.njk',
  }))
...

Options

libraryPath

The default libraryPath is ./markdown-partials/. This default assumes that all pages are located in ./src/ so the markdown partials are located inside the metalsmith source directory.

const mdPartials = require('metalsmith-markdown-partials');

metalsmith(__dirname)
  .use(mdPartials({
    libraryPath: './markdown-partials/'
  })

fileSuffix

The default fileSuffix is .md, but depending on which templating language is used, the suffix will have two parts. For example for Nunjucks it will be md.njk.

const mdPartials = require('metalsmith-markdown-partials').use(
  mdPartials({
    fileSuffix: '.md.njk'
  })
);

How it works

Include marker

{#md "<file name>.md" #}

Page Markdown File

A markdown file that will be transformed into an html file via a template

Markdown Partial

A markdown file to be inserted into a Page Markdown file

Markdown partials are located in a separate directory, for example /markdown-library/. This directory should be located inside /src/ .

Partial markdown files have the extention .md. A markdown partial file does NOT have frontmatter metadata, only the markdown to be inserted into a page markdown file.

The markdown partials directory's default location is ./src/markdown-library/. The partials directory can be set via the libraryPath option.

Example

index.md

# This is an Example Page

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.

{#md "example_partial.md" #}

Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

example_partial.md

## Inserted Content

Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Nulla vitae elit libero, a pharetra augue.

index.html

<h1>This is an Example Page</h1>

<p>
  Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec id elit non mi porta
  gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec
  elit.
</p>

<h2>Inserted Content</h2>
<p>Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Nulla vitae elit libero, a pharetra augue.</p>

<p>
  Cras mattis consectetur purus sit amet fermentum. Cras justo odio, dapibus ac facilisis in, egestas eget quam.
  Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cum sociis natoque penatibus et magnis dis
  parturient montes, nascetur ridiculus mus.
</p>

Debug

To enable debug logs, set the DEBUG environment variable to metalsmith-markdown-partials:

Linux/Mac:

DEBUG=metalsmith-markdown-partials

Windows:

set "DEBUG=metalsmith-markdown-partials"

CLI usage

To use this plugin with the Metalsmith CLI, add metalsmith-markdown-partials to the plugins key in your metalsmith.json file:

{
  "plugins": [
    {
      "metalsmith-markdown-partials": {
        "libraryPath": "./markdown-partials/",
        "fileSuffix": ".md.njk"
      }
    }
  ]
}

Author

License

Code released under the ISC license.

metalsmith-markdown-partials's People

Contributors

wernerglinka avatar wernerglinka-pr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

metalsmith-markdown-partials's Issues

when html is created and three dots

4 questions

  1. I wonder when the index.html file will be created. Is there a listener to check whether the index.md has changed? Or do I need another tool because your tool is dealing with partials?

  2. What are the three dots for? I think they tell the parser that it is a partial:
    ...

...
  1. example
    var mdPartials = require('metalsmith-markdown-partials');
    ...
    .use(mdPartials({"libraryPath": './dev/content/library/'}))
    ...
  • Is this code for the app.js in node?
  • What is the .use, the . here? Is it related to REPL that uses . syntax ?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.