From ccff9ec4bdea63e201141d90cea9fc1ea2368203 Mon Sep 17 00:00:00 2001 From: oakes Date: Tue, 1 Apr 2014 16:45:43 -0400 Subject: [PATCH] Add special sanitizer for right arrows --- doclet/src/clojure/play_clj_doclet/html.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/doclet/src/clojure/play_clj_doclet/html.clj b/doclet/src/clojure/play_clj_doclet/html.clj index 4a74a63..5ea214c 100644 --- a/doclet/src/clojure/play_clj_doclet/html.clj +++ b/doclet/src/clojure/play_clj_doclet/html.clj @@ -7,6 +7,7 @@ [s] (-> s (string/replace "?" "_q") + (string/replace "->" "_") (string/replace ">" "_r") (string/replace "<" "_l") (str ".html")))