Wismill
Wismill
> I don't think the `` is the only one that is not supported by doxygen. > > Quite often the problem is how to represent the tag in the...
In fact if you export them as some "foreign" tag in the XML output, for later interpretation, it could make it quite handy to extend Doxygen.
Meanwhile I started to use the following aliases around `` tags: ``` ALIASES += rawHtml="@htmlonly@endhtmlonly" ``` Example: ```markdown Markdown tags works *before* CLI and *after*. ``` This is really hacky...
To be honest, I am really concerned by the poor QA of this project. Breaking such a **_basic_ feature** gives me little faith in the new releases. Is there no...
> We do have tests that compare the output against expectations. This is mostly limited to XML output for automation reasons. While there are currently 100+ tests, it would require...
@albert-github Note that `` can also be used in ``, see [the `` doc](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/table).
> otherwise an example would be nice. @albert-github see [the link](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/table) above. Or do you need something else?
I would say migrate either all of them or none, for consistency.
The simplest. Something like: ```haskell prependByteStringBuilder :: Int -> BB.Builder -> Buffer %1 -> Buffer appendByteStringBuilder :: Buffer %1 -> Int -> BB.Builder -> Buffer ``` where the `Int` is...
You mean something like: ```haskell appendBSBuilder :: BB.Builder -> Buffer %1 -> Buffer appendBSBuilder builder = unsafeDupablePerformIO (B.unsafeUseAsCString (BL.toStrict (BB.toLazyByteString builder)) (\(Ptr addr) -> pure (|># addr))) appendBSBuilder' :: Buffer...