Make Docs use Base URL instead of Top Level Domain
Created by: jasondavis
Right now in the version 3 Documentation files, all links are using Root Relative URL's.
The problem, or annoyance this causes is that the Docs have to be put on a Top Level Domain or Sub-Domain for the links and files to load correctly.
My proposal is to add a Base URL Tag
to the head of all Docs and then change the current URL's
from this style...
<a href="/bootstrap.css">/bootstrap.css</a>
to this...
<a href="./bootstrap.css">/bootstrap.css</a>
By simply adding a Period. In front of the current URL's it will make them work off the Base URL set in the head like this...
<base href="http://subdomain.domain.com/folder/" />
This would make the Docs be accessible in a sub-folder of a domain