Reece H. Dunn
Reece H. Dunn
Given: ``` enum class Color { Red, Green, Blue }; ``` and associated documentation like: ``` # Describes a system color. These colors are assocated with CSS-style `RGB` values of...
Using cldoc 1.6, having a markdown file with: ``` # License Description of the license for the file. # Test documentation. ``` Causes a "Failed to merge file... no #cldoc:id...
This is a fix for documenting `operator/` and `operator/=` in markdown. For example: ``` struct vector { const vector &operator/=(int scalar); }; vector operator/(const vector &v, int scalar); ``` The...
If you have two symbols (`foo` and `bar`) that you want to place in a group, you cannot do that in the markdown documentation. For example: ``` cldoc:begin-category(my_group) # #...
Given: ``` void test(int a); void test(float val); ``` it is not possible to specify which overload is being documented (such that each function gets the correct documentation, e.g. in...
Given the markup in the example from https://www.w3.org/TR/2001/REC-ruby-20010531/#complex: ``` 10 31 2002 Month Day Year Expiration Date ``` the jsoup parser treats the `rtc` element as an unknown element that...
## Requirements - [ ] Run all supported platforms within a single CI file, with status identifiable on each (can work around this using separate branches). - [x] Run CI...
Trying to use `/roxy/lib/rewriter-lib.xqy` with MarkLogic 9.0-3.1 results in the following error: Notice: XDMP-IMPMODNS: (err:XQST0059) Import module namespace http://marklogic.com/rest-api/endpoints/config does not match target namespace http://marklogic.com/rest-api/endpoints/config_DELETE_IF_UNUSED of imported module /MarkLogic/rest-api/endpoints/config.xqy Notice:+in...
#### The issue ##### Short description of the problem: The `routing-helper.xqy` `set-content-type` helper function maps formats to mimetypes, and if it does not recognise the format, it sets the content...
Given: ``` declare %test:case function compare-2-json-array() { let $actual := array-node { 1, 2, 3 } let $expected := array-node { 1, 3, 5 } return assert:equal($actual, $expected) }; ```...