tipograph
Version:
A little javascript library and command line tool that makes your written content more typographically correct.
19 lines (14 loc) • 454 B
Markdown
Format function is responsible for preprocessing the input and split it into two categories: format tokens and actual content.
```js
export default function () {
// initialize
return function (input) {
// tokenize input
// return Array<{ transform: boolean, content: string }>
// tokens with transform=true are then concatenated and transformations are applied
return input;
};
}
```