George Phillips

Results 4 comments of George Phillips

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(/\/$/, "") ```