Craig Barnes
Craig Barnes
> ... it's more XML rather than HTML thing, isn't it? Yes. There's no such thing as a "tag with a namespace" in HTML. The "tag name" tokenizer [state](https://html.spec.whatwg.org/#tag-name-state) consumes...
> @craigbarnes does that mean a tag name state can parse `` with a tag name of `foo:bar`? Yes, but `foo` is not a "namespace" (in the XML sense) when...
Whitelisting specific elements isn't sufficient to stop scripting attacks. Attributes also need to be filtered: ```html ```
> Is it enough to call a tag callback and then (n-times) attribute callback (for each attribute)? Or are there cases where the filter needs to know all tags attributes...
@mity What do you think about definition lists as an extension? Would you have any objections if someone were to send a patch for it? In particular I mean the...
> Some terminal emulators (like foot) do not support an argument `-e` FWIW, foot now [ignores](https://codeberg.org/dnkl/foot/pulls/719) the `-e` flag.
> Webassembly should not bring us much Have you seen the [WebAssembly GC/DOM integration](https://github.com/WebAssembly/design/blob/master/GC.md) page?
> Hooks and clang-format clash with that because clang-format runs on the whole working copy, not just the changes that are being committed You can use `git checkout-index --all --prefix=.tmpdir/`...
> The same goes for Make. A makefile file with space indentation won't work. It isn't like YAML where _any_ form of tab indent is invalid though. It only applies...
If you don't want trailing whitespace in your codebase, why not just remove it all in a single commit and be done with it? If the problem is in getting...