UNPKG

docutils-ts

Version:

Port of the Python Docutils library to TypeScript

10 lines (9 loc) 266 B
import Directive from '../directive.js'; import * as nodes from '../../../nodes.js'; export class Contents extends Directive { run() { return [new nodes.comment('', 'unimplemented directive contents')]; } } export class Sectnum extends Directive { }