Nico Hagenburger

Results 59 issues of Nico Hagenburger

If a code block contains ``, the preview must convert it into a `` (or other HTML tag) as otherwise the browser will ignore it. Two options: 1. Convert ``...

enhancement
good first issue
plugin

## Existing functionality ![Video preview of Showmore plugin](https://user-images.githubusercontent.com/103399/46336396-f7049980-c62a-11e8-94ec-9acdee8e858f.gif) Detailed documentation: https://github.com/hagenburger/pimd/tree/master/plugins/showmore#readme ## New feature To allow more easy counting, allow negative numbers: ````markdown ```html +showmore=2..-2 ``` ```` Should have the...

enhancement
good first issue
plugin

## New feature Allow inline JavaScript to create or manipulate content. ## Specifications Tbd. ## Example use cases ### Create a list out of files The following Markdown: ```markdown #...

enhancement
plugin
specification-needed

Create simple website with the following structure: ``` / # Home page with live preview and rendered README below, /plugins/highlight # Renderered /plugins/highlight/README.md /plugins/preview # Renderered /plugins/preview/README.md /plugins/... # All...

good first issue
RGSoC
documentation

## 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...

enhancement
plugin

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', ()...

enhancement
good first issue
RGSoC

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...

enhancement
RGSoC
documentation

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.

RGSoC
external
specification-needed

## 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...

enhancement
good first issue
RGSoC

## 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...

enhancement