// /section/name/ becomes /section/name/index.html
// /section/name/index.html becomes /section/name/index.html
func PrettifyPath(in string) string {
- return prettiyPath(in, fpb)
+ return prettifyPath(in, fpb)
}
-func prettiyPath(in string, b filepathPathBridge) string {
+func prettifyPath(in string, b filepathPathBridge) string {
if filepath.Ext(in) == "" {
// /section/name/ -> /section/name/index.html
if len(in) < 2 {
// /section/name/ becomes /section/name/index.html
// /section/name/index.html becomes /section/name/index.html
func PrettifyURLPath(in string) string {
- return prettiyPath(in, pb)
+ return prettifyPath(in, pb)
}
// Uglify does the opposite of PrettifyURLPath().