George Phillips
George Phillips
Any able to help on this? Is there anything I can provide to further debug?
Building sites with absolute URLs is fine if you are not using `baseurl`. What if we added a new config variable called `base_path` (or an alternative) that parsed the html...
I agree with @pathawks, some validation should be added to baseurl. - Must start with a slash, `jekyll serve --baseurl example` produces `Server address: http://127.0.0.1:4000example/`. Alternatively, a slash could be...
Could do something like: ``` js ("/" + site.baseurl).replace(/\/+/mg, "/").replace(/\/$/, "") ```