Waylan Limberg

Results 316 comments of Waylan Limberg

This appears to be an implementation of the feature requested in #1293. What happens here depends on what decision is made there.

The [Contributing Guidelines][1] are relevant here: > Legacy code which does not follow the guidelines should only be updated if and when other changes (bug fix, feature addition, etc.) are...

I expect that Markdown linters don't know anything about a abbreviation definition. If they aren't complaining about them at all, then that is coincidental (in that the linter isn't strict...

Interestingly, the oldest implementations (the reference implementation and those which most closely follow it) all [behave](http://johnmacfarlane.net/babelmark2/?normalize=1&text=If+that+%5Bformatting+contains+%60code%60+backticks%5D%5B%5D+then+it+should%2C+but+the+Python+renderer+doesn%27t+handle+it+correctly.%0A%0A%5Bformatting+contains+%60code%60+backticks%5D%3A+https%3A%2F%2Fexample.com%2Fref-link-with-code) the same way. I'm comfortable being in that company. Personally, I never use code...

@bndby if you read my previous comments closely you will see that we don't really consider this to be a bug as the current behavior matches the reference implementation. That...

So, I based the current behavior on the rules, which state: > The only restrictions are that ... the start and end tags of the block should not be indented...

> Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests I find this amusing. The article above goes through the explanation of how an attacker could use...

Over the years we have changed the list of accepted keys. When a key is deprecated, we will raise a warning for a few versions, then remove it. However, we...

Have you tried using the [attr_list][1] extension, which allows you to define your own IDs on elements? That said, autogenerated IDs would be a reasonable feature of the def_list extension,...

Here is an example using the attr_list extension: ``` foo { #foo } : bar key { #key } : value ``` which generates the following HTML: ```html foo bar...