markkjs
v1.0.0
Published
Node Module
Downloads
4
Readme
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