Stephen Afam-Osemene

Results 80 comments of Stephen Afam-Osemene

> This means we would need to change all our names to snake_case to use SQLBoiler, right? That is pretty old, and this is no longer true. I took some...

I suspect this has something to do with encoding HTML entities. Maybe because of some copied code from the HTML renderer. I'll take a look.

I've added support for local links on the current master branch. Some things to note: This only works for hashtag links to headers. The header ID attribute need to be...

I am adding the anchors when rendering headings. [See here](https://github.com/stephenafamo/goldmark-pdf/blob/master/renderer_funcs.go#L81) When rendering links, I am also checking for the `#`. [See here](https://github.com/stephenafamo/goldmark-pdf/blob/master/writer.go#L50) Make sure you're on the latest commit, it...

@ivanjaros I generate with this markdown [page.md](https://github.com/stephenafamo/goldmark-pdf/files/10369073/page.md) And this code ```go package main import ( "context" _ "embed" "image/color" "os" pdf "github.com/stephenafamo/goldmark-pdf" "github.com/yuin/goldmark" "github.com/yuin/goldmark/extension" "github.com/yuin/goldmark/parser" ) //go:embed page.md var markdown...

If you added a `replace` directive to your `go.mod`, you should remove it, if not it will keep using your local version.

I can't seem to reproduce this. Can you share more details (OS, Go Version, go.mod)

Apologies, the docs are wrong. Both `Where` and `Expr` return `QueryMods`. Expr can be used to group where mods. It comes it handly when using the where mods that were...

I have a benchmark repository for SQL Builders and I've added this package to it. Check it out: