Alexander Schilling
Alexander Schilling
I'would like to add support for inline tag `{@link []}` which should be replaced by a link with the optional title to the target. The target itself may be -...
I have done an extension of markdown-it to bring all this features with an easy markdown syntax. It is working but in the moment implemented internally in my [alinex-report](http://alinex.github.io/node-report/README.md.html#visualization) package....
If I have a very long path in my table, is it possible to also split after `/` character? Example: `/home/user/project/subproject/category/66623/contents/fd6873d67a3f3d67a3.jpg` Should be in the table (with maxLen) something like:...
I have a value of `1200000 mm' and I wan't to have a method which automatically transfers to the best prefix like: const qty = new Qty(1200000, 'mm').toBest() // now...
I know thats way more complex but is it possible to also support the following: ``` div.info::before { content: 'Info'; background-color: #66dd66; } ```
I used the example from https://github.com/juijs/jui-chart to create the chart in nodejs. While using version 1.4.2 it works like it should. But if I use the new version 2.0.2 I...
### Version 5.26.2 with svelte 4.2.0 ### Describe the bug On first load the translation text will not be displayed (output as empty string ``) . If the language is...
I wan't to replace with multiline a tag which goes over multiple lines: ``` sh replace '(.*?)' '$1' index.html -p -m ``` How is the correct syntax to do this?...
If i require the module in asimple mocha test: ``` chai = require 'chai' expect = chai.expect require 'long-stack-traces' it "should work", -> # do nothin and succeed expect(1+1).to.equal 2...