Dennis Hackethal
Dennis Hackethal
Worth telling people exactly which tags smarty pants skips.
SmartyPants has supported escaping quotation marks [since 2003](https://daringfireball.net/projects/smartypants/#version_1.2) "to force non-smart punctuation" (i.e. so it doesn't turn straight quotation marks into curly ones). When I try to escape quotation marks...
- [x] I am reporting a bug or problem in Chestnut I create a new project and then try to launch the repl: ```bash ➜ lein new chestnut frontend-two --snapshot...
Importmap doesn’t seem to track any sources so running `update` can trigger a download from a different source than the one from which a package was originally installed. ```bash $...
Example markdown string: ``` *some **emphasized** text* ``` Expected output: ```html some emphasized text ``` Actual output: ```html some *emphasized** text* ``` Bad. Workaround is to use double underscores for...
Redcarpet seems to automatically URI encode the href for links. That’s fine in most cases except when linking to text fragments, where the tilde must not be encoded. Current behavior:...
I needed to be able to specify multiple custom class names. This PR modifies an existing test to cover src/util.ts:314. It also adds a new test to cover multiple custom...
I needed a way to ignore attributes because I’m diffing markdown-generated html. Some markdown libraries assign ids to headings based on content. For example: ```md # heading ``` Will generate:...
https://teamwork.github.io/visual-dom-diff/ Original content: ```html An unordered list. An ordered list. Some common text. Some common text. Some common text. ``` Changed content: ```html An ordered list. An added paragraph.Some common...
I use invisible captcha in a sign-up form: ```erb ``` I do not, in fact, let people pick a username, but was hoping it would trick bots. Some bots still...