Cameron Moore

Results 147 comments of Cameron Moore

It’s related to Go modules. You need at least 1.9.7. See https://github.com/golang/go/wiki/Modules.

@wizardist, not sure, but it's unrelated to this issue.

@bep, It appears that `content/index.md` is gobbling up all regular pages (the "page" partition cache contains one item: `index.md`) so that shortcodes like `{{< ref "getting-started/index.md" >}}` no longer work....

I disagree with this issue principally because of [the rules of generality in Effective Go](https://golang.org/doc/effective_go.html#generality). Read it since I won't repeat the argument. `BasePathFs` and `MemMapFs` are the only `Fs`...

I'm not saying that `BasePathFs` itself should not be exported. It is and should be. I only mean that `BasePathFs.RealPath` should be unexported. `RealPath` adds a method that's already wrapped...

This feature/issue has come up before (#56). Hugo docs are pretty clear: https://gohugo.io/functions/int/. This PR would break the existing API by forcing all inputs to base 10, so I'm against...

@Dirbaio is correct. The `RealIP` middleware is breaking the rules here. Three options: 1. Stop using the `RealIP` middleware since it's fairly trivial. 1. Fork a local copy. 1. Change...

Except the `markdown-magic` idea. I don't like magic. 😃

@dexpota, any progress on this?