Pascal Berger

Results 169 comments of Pascal Berger

This probably can be done in Addin Discoverer as part of the compliance score calculation (https://github.com/cake-contrib/Cake.AddinDiscoverer/issues/156) and written to YAML file

https://crates.io/crates/wealthy (a port of https://github.com/Textualize/rich) can also be interesting for implementing formatting

`content` tag misses an `type=html` property as described here: https://validator.w3.org/feed/docs/atom.html#text

@NicolleNina Please stop spamming this PR

> I'm also wondering if the Markdown parser is getting in the middle and encoding it before I see it (or something related to that process on my end). @daveaglick...

Related Markdig issue: https://github.com/xoofx/markdig/issues/514

While CommonMark expects `&` in links to be rendered as `&` and browsers would handle it, the problem here is that Statiq.Razor converts it to `&`. Markdown: ``` [A link](https://example.com/?foo=bar&baz=123)...

Issue is caused by the use of `TagBuilder`, which will encode the link a second time: https://github.com/statiqdev/Statiq.Framework/blob/e990cb1b4d0884dc1e3f9371aa1d55551c5ecf18/src/extensions/Statiq.Razor/IHtmlHelperExtensions.cs#L289

@daveaglick Not sure what's the best way to proceed here: Currently Statiq.Markdown (Markdig) and Statiq.Razor (TagBuilder) are encoding. We need to get rid of one of those. There's no option...

I don't know if this is possible though with the current API as these information seem to be missing on the [gitpullrequest object](https://www.visualstudio.com/integrate/extensions/reference/client/api/tfs/versioncontrol/contracts/gitpullrequest)