0.3.3 • Published 2 years ago

flav-md v0.3.3

Weekly downloads
2
License
MIT
Repository
github
Last release
2 years ago

flavmd-logo

flav-md

Node.js CI

markdown parser with css style

About

How to use

install

You can install via npm with

npm install flav-md

import flav-md

load from file

CommonJS

const flavmd = require('flav-md');
const result = flavmd
  .createFlavMd()
  .readMdFile('example.md')
  .readCssFile('example.css')
  .build();

ES6 or TypeScript

import {createFlavMd} from 'flav-md';

const result = createFlavMd()
  .readMdFile('example.md')
  .readCssFile('example.css')
  .build();

load from text

CommonJS

const flavmd = require('flav-md');
const result = flavmd
  .createFlavMd()
  .readMdText('# hogehoge')
  .readCssText('.flav-md-h1 {color: red;}')
  .build();

ES6 or TypeScript

import {createFlavMd} from 'flav-md';

const result = createFlavMd()
  .readMdText('# hogehoge')
  .readCssText('.flav-md-h1 {color: red;}')
  .build();

Document

CSS class

0.3.3

2 years ago

0.3.2

3 years ago

0.3.0

4 years ago

0.3.1

3 years ago

0.2.1

4 years ago

0.2.0

5 years ago

0.1.0

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago