Alexandru Ungur
Alexandru Ungur
You can now run the following code to disable smart parens: ```Go mdOpt = blackfriday.WithRenderer(blackfriday.NewHTMLRenderer(blackfriday.HTMLRendererParameters{ Flags: blackfriday.CommonHTMLFlags ^ blackfriday.SmartypantsParens, })) blackfriday.Run([]byte(...), mdOpt) ```
Copied from Echo: https://github.com/labstack/echo/issues/1309
I was unable to access the homepage while being authenticated, and it all boiled down to this: https://github.com/wolfeidau/cognito-vue-bootstrap/blob/master/src/router/index.js#L72-L76, I quote: ```JavaScript if (to.meta && to.meta.auth !== undefined) { if (to.meta.auth)...
There was a subtle bug that caused all pages set with auth:false to be redirected to Dashboard, making the homepage inaccessible while authenticated.
Trying to use xclip to paste html into Gmail. Works flawlessly on Linux, doesn't work at all on Mac. No error, so I guess it makes it to X11's clipboard...
By rearranging the fields the memory usage per type was reduced as follows: - `Parser` 24 -> 16 bytes - `QueryError` 24 -> 8 bytes - `QueryCapture` 16 -> 8...
Given a file that includes: ``` // https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters ``` I would expect `https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters` to be parsed as URL. However, when I inspect the parse tree, I see that it says:...
`go list` issued here https://github.com/mitchellh/gox/blob/master/go.go#L125 is completely oblivious to the build tags passed to `gox`, thus for cases where they are needed, even though `go build` would correctly work, it...
Would you mind adding a link to https://github.com/alexaandru/go-sitter-forest in the README, for those needing additional parsers? I currently have there 275 parsers (https://github.com/alexaandru/go-sitter-forest/blob/main/PARSERS.md) and growing. Thank you!