Andrew Brampton
Andrew Brampton
I'm using [Hugo](https://gohugo.io/) which uses blackfriday to create HTML from Markdown. In my HTML I need my generated tables tags to have `class="table"` added to the table tag. (This is...
Some of the grammars have a ".tree" and ".error" file. Read them as part of the test case and check the parsed output matches.
On this [page](https://godoc.org/bramp.net/antlr4) there is a list of subpackages, but no short descriptions. Update the doc.go files to have a short description of the package (and take the long name...
The gojay generator produces an array type called `Currencys` for the `Currency` struct. It would be good if it could follow correct English pluralisation rules, so `Currency` becomes `Currencies`. The...
When generating code with gojay, it does not support types starting with K. For example: ```go type Key struct {...} ``` generates the code: ```go func (k *Key) UnmarshalJSONObject(dec *gojay.Decoder,...
I would like the gojay codegen tool to have a flag to return a error if an unknown field is encountered. For example ```go func (m *Message) UnmarshalJSONObject(dec *gojay.Decoder, k...
Over websocket I receive a stream of objects. I know the byte length of each object, and I want to ensure (as a safety/sanity check) that `DecodeObject(...)` has fully read...
I have the following code: ```rust const INITIAL_BIAS: u32 = 72; const BASE: u32 = 36; const TMIN: u32 = 1; const_assert!(INITIAL_BIAS % BASE src/punycode.rs:18:15 | 18 | const_assert!(INITIAL_BIAS %...