diff --git a/src/main/scala/view/Asciidoc.scala b/src/main/scala/view/Asciidoc.scala index 9404f7a..5c131c4 100644 --- a/src/main/scala/view/Asciidoc.scala +++ b/src/main/scala/view/Asciidoc.scala @@ -46,7 +46,6 @@ case tag: TagNode if tag.getName == "a" => Option(tag.getAttributeByName("href")) foreach { href => if (exceptionPrefixes.forall(p => !href.startsWith(p))) { - // if (!href.startsWith("/") && !href.startsWith("http://") && !href.startsWith("https://")) { tag.addAttribute("href", s"${urlPrefix}${href}") } }