jessevdk / cldoc

clang based documentation generator for C and C++
GNU General Public License v2.0
553 stars 59 forks source link

Fix broken links in static site. #94

Closed Ventero closed 9 years ago

Ventero commented 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.

refi64 commented 9 years ago

Minor nitpicking: would using a string in the call to replace be any faster?

Ventero commented 9 years ago

.replace("::", ".") would only replace the first instance of ::, not all of them.

refi64 commented 9 years ago

Ah, right.

jessevdk commented 9 years ago

Thanks!