Overview

markdown instance on github for Document


Table of contents


markdown (constant)

markdown instance on github

Signature


export const markdown: Document = ...

article (function)

article

Signature


export const article: Document['article'] = text => ...

Added in v0.2.0

blockquote (function)

blockquote 1 blockquote 2”

Signature


export const blockquote: Document['blockquote'] = as => as.map(a => ...

Added in v0.2.0

bold (function)

bold

Signature


export const bold: Document['bold'] = text => ...

Added in v0.2.0

br (function)

br

Signature


export const br: Document['br'] = (text) => ...

Added in v0.2.0

cite (function)

cite

Signature


export const cite: Document['cite'] = text => ...

Added in v0.2.0

code (function)

import a from 'a'

Signature


export const code: Document['code'] = language => a => ...

Added in v0.2.0

del (function)

del

Signature


export const del: Document['del'] = text => ...

Added in v0.2.0

dfn (function)

dfn

Signature


export const dfn: Document['dfn'] = text => ...

Added in v0.2.0

em (function)

em

Signature


export const em: Document['em'] = text => ...

Added in v0.2.0

h1 (function)

h1

Signature


export const h1: Document['h1'] = title => ...

Added in v0.2.0

h2 (function)

h2

Signature


export const h2: Document['h2'] = title => ...

Added in v0.2.0

h3 (function)

h3

Signature


export const h3: Document['h3'] = title => ...

Added in v0.2.0

h4 (function)

h4

Signature


export const h4: Document['h4'] = title => ...

Added in v0.2.0

h5 (function)

h5

Signature


export const h5: Document['h5'] = title => ...

Added in v0.2.0

h6 (function)

h6

Signature


export const h6: Document['h6'] = title => ...

Added in v0.2.0

hr (function)


Signature


export const hr: Document['hr'] = () => ...

Added in v0.2.0

img (function)

img

Signature


export const img: Document['img'] = (text, href) => ...

Added in v0.2.0

ins (function)

ins

Signature


export const ins: Document['ins'] = text => ...

Added in v0.2.0

italic (function)

italic

Signature


export const italic: Document['italic'] = text => ...

Added in v0.2.0

link (function)

link

Signature


export const link: Document['link'] = (text, href) => ...

Added in v0.2.0

mark (function)

mark

Signature


export const mark: Document['mark'] = text => ...

Added in v0.2.0

ol (function)

  1. ol1
  2. ol2”

Signature


export const ol: Document['ol'] = as => as.map(a => ...

Added in v0.2.0

p (function)

p

Signature


export const p: Document['p'] = text => ...

Added in v0.2.0

q (function)

‘q’

Signature


export const q: Document['q'] = text => ...

Added in v0.2.0

section (function)

section

Signature


export const section: Document['section'] = text => ...

Added in v0.2.0

table (function)

head1 head2
11 12
21 22

Signature


export const table: Document['table'] = (as: string[][]) => ...

Added in v0.2.0

ul (function)

  • ul1
  • ul2”

Signature


export const ul: Document['ul'] = as => as.map(a => ...

Added in v0.2.0