1.0.0 • Published 6 years ago

markkjs v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

markkjs

v1.0.0

How To Use MarrkJS Markup

const mjs = require('markkjs');
var m = mjs.markup;

m('file', 'file.html');
m('title', 'NPM');
m('text', 'Vist ');
m('link', 'npmjs.com', 'npm');
m('text', ' today!');
m('newline');m('newline');
m('text', '© 2018');
  • File, yourfile.html : this is the file the page will go onto.
  • Title, Site Title : this is the page title and header.
  • Text, Paragraph : this is any page text.
  • Link, npmjs.com, NPM : this is any page link.
  • Newline, : this seperates the current line to another line.

v1.0.0