pimd
pimd copied to clipboard
PIMD – Processing Instructions for Markdown
## New feature Allow links in code blocks. This is useful when there are definitions elsewhere. ## Specifications ```` markdown ``` html +link=/class/g:https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/class,/my-special-list-item/g:#my-special-list-item Item 1 Item 2 Item 3 Item...
The current way to add a new command (Processing Instruction) `` is: ``` javascript config.commands['my-command'] = () => 'return value' ``` This should be refactored into: ``` javascript config.commands.add('my-command', ()...
This requires #44 to be finished. Check this blog post on the details: https://medium.com/superhighfives/deploying-to-github-pages-with-gulp-c06efc527de8 I already set up the `gh-pages` branch and configured GitHub to use it. Results will be...
Write a plugin for [Gulp](https://gulpjs.org). Have a look at other plugins like * [gulp-markdown](https://www.npmjs.com/package/gulp-markdown) * [gulp-markdownit](https://www.npmjs.com/package/gulp-markdownit) und come up with a specification first.
## New feature Code examples should get an automatically generated HTML ID if not defined by the user. ## Specification ```` markdown ``` html #my-id Lorem ipsum ``` ```` Already...
## Current situation Usually processing instructions have defined the paragraph as their `element`: ``` markdown Lorem ipsum ``` `pi.element` refers to the `` which will contain `Lorem ipsum`. ## Proposed...
## New feature This command will change the title of the document. ## Specifications ``` xml ``` ## Example usage `test.md`: ``` markdown # First headline Text ``` Rendered result...
Write a plugin for [Grunt](https://gruntjs.com). Have a look at other plugins und come up with a specification first.
Write a plugin for [Webpack](https://webpack.js.org). Have a look at other plugins und come up with a specification first.
It would be nice to re-structure the website so people can understand faster what LSG is about and find documentation to start working with it. Here is a first idea:...