Code Monkey home page Code Monkey logo

mdify's Introduction

mdify

mdify

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Buy Me A Coffee

Markdown helpers with metadata support.

☁️ Installation

# Using npm
npm install --save mdify

# Using yarn
yarn add mdify

📋 Example

const mdify = require("mdify");

let md = mdify.stringify({
    author: "Johnny B."
  , date: new Date()
  , tags: ["hello", "world"]
}, `## Hello World!
Hey **there**!`);

console.log(md);
// ---
// author: Johnny B.
// date: 2016-06-06T07:12:17.533Z
// tags:
//   - hello
//   - world
// ---
// ## Hello World!
// Hey **there**!


console.log(mdify.parse(md));
// { markdown: '\n## Hello World!\nHey **there**!',
//   metadata:
//    { author: 'Johnny B.',
//      date: Mon Jun 06 2016 10:12:17 GMT+0300 (EEST),
//      tags: [ 'hello', 'world' ] },
//   rawMeta: '---\nauthor: Johnny B.\ndate: 2016-06-06T07:12:17.533Z\ntags:\n  - hello\n  - world',
//   html: '<h2 id="helloworld">Hello World!</h2>\n\n<p>Hey <strong>there</strong>!</p>' }

❓ Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. 🐛
  3. For direct and quick help, you can use Codementor. 🚀

📝 Documentation

stringify(metadata, content, [options])

Stringify metadata and content.

Params

  • Object metadata: The metadata object.
  • String content: The markdown content.
  • Object [options]: An object containing the following fields:
  • start (String): The start delimiter of the metadata (default: ---).
  • end (String): The end delimiter of the metadata (default: ---).
  • yamlOptions (Object): Custom js-yaml options.

Return

  • String The markdown content prefixed by the stringified metadata.

parse(input, [options])

Parses the markdown input and the metadata.

Params

  • String input: The markdown code. If it contains metadata, it will be parsed.
  • Object [options]: An object containing the following fields:
  • start (String): The metadata prefix (default: ---).
  • end (RegExp): The metadata end.
  • html (Boolean): If true, the markdown code will be parsed into HTML (default: true).
  • converterOptions (Object): The converter options passed to showdown.

Return

  • ParseResult

writeFile(path, metadata, content, [options], [cb])

Writes the generated content into a file.

Params

  • String path: The file path.
  • Object metadata: The metadata object.
  • String content: The markdown content.
  • Object [options]: The stringify options.
  • Function [cb]: The callback function.

parseFile(path, [options], [cb])

Parses a markdown file.

Params

  • String path: The file path.
  • Object [options]: The parser options.
  • Function [cb]: The callback function.

Return

  • ParseResult Only if cb was omitted.

An object containing the following fields:

😋 How to contribute

Have an idea? Found a bug? See how to contribute.

💖 Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like 🚀

  • Buy me a book—I love books! I will remember you after years if you buy me one. 😁 📖

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. 🍵

  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! ❤️

💫 Where is this library used?

If you are using this library in one of your projects, add it in this list. ✨

  • bloggify-markdown-adapter

📜 License

MIT © Ionică Bizău

mdify's People

Contributors

ionicabizau avatar gazmull avatar mootari avatar dependabot[bot] avatar simon-laux avatar

Stargazers

Mustafa Enes Ertarhanaci avatar David Wells avatar Kieran avatar Subhan Bakh avatar Timothy Cyrus avatar Howard Tang avatar Josh Meads avatar Brian Vanegas Parra avatar William avatar  avatar  avatar  avatar Yerko Palma avatar Colten Jackson avatar Chauncey McAskill avatar Benoit Pohl avatar Kyle Alwyn avatar Ben Drucker avatar Joe Van Drunen avatar Yuhei Yasuda avatar AMAGI / Jun Yuri avatar Jonas Mendes avatar Mark Coleman avatar ricky avatar Matt DesLauriers avatar Ian Sinnott avatar Trent Polack avatar Sébastien Chopin avatar Mads Obel avatar Travis Taylor avatar Adam Curtis avatar Mathieu M-Gosselin avatar Anton W avatar Alison Monteiro avatar Amit Merchant avatar KOSAKA Kensuke avatar Simon Thiboutôt avatar Radu Potop avatar

Watchers

James Cloos avatar  avatar  avatar

mdify's Issues

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.