pimd
pimd copied to clipboard
PIMD – Processing Instructions for Markdown
When PIMD gets used in the browser, JSDOM is not needed, as the browser already has its own DOM. This would reduce the package size and increase the speed.
## New feature Call PIMD from the command line. This should be a separate NPM package. ## Specification ### Input by user ``` bash pimd # Hello world ``` End...
## New feature Allow page/code block-specific CSS. ## Specification ```` markdown a { color: blue; } ```` Should add the text content of `` to the `contents` of the document:...
Define a way to integrate processors for CSS and JavaScript. Those could be: PostCSS, Sass/SCSS, Less, Coffee-Script, Babel, … ## Current situation CSS and JavaScript can be added via: ```...
## New feature Either an element or a code block should be able to update an HTML attribute. ## Specifications The following combinations should be possible: * `[attribute=value]` → `attribute="value"`...