Closed Ventero closed 9 years ago
Since 3526fe7a99c06a16430b5d039cad44d79dcd4191, generated filenames contain :: instead of . as separators. This commit fixes the links in the static site to point to the correct filenames.
Refs #91.
Minor nitpicking: would using a string in the call to replace be any faster?
.replace("::", ".") would only replace the first instance of ::, not all of them.
.replace("::", ".")
::
Ah, right.
Thanks!
Since 3526fe7a99c06a16430b5d039cad44d79dcd4191, generated filenames contain :: instead of . as separators. This commit fixes the links in the static site to point to the correct filenames.
Refs #91.