unified-doc-types

unified-doc typescript typings.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
unified-doc-types
2.0.34 years ago4 years agoMinified + gzip package size for unified-doc-types in KB

Readme

unified-doc-types
unified-docunified-doc typescript typings.

Install

npm install unified-doc-types

Use

import { FileData, Mark, SearchResult } from 'unified-doc-types';

const fileData: FileData = {
  content: '> **some** markdown content',
  extension: '.md',
  name: 'doc.md',
  stem: 'name',
  type: 'text/markdown'
};

const marks: Mark[] = [
  { id: 'a', start: 0, end: 5, classNames: ['class-a', 'class-b'] },
  { id: 'b', start: 0, end: 5, style: { background: 'red' }, data: { custom: true } },
];

const results: SearchResult[] = [
  { start: 0, end: 2, value: 'so', data: { weight: 2 } },
  { start: 6, end: 8, value: 'rk', data: { weight: 5 } },
];