Removed commented out code.

This commit is contained in:
Tobias Roeser
2014-03-05 09:28:13 +01:00
parent af397ba150
commit 10a40bfcaf

View File

@@ -46,7 +46,6 @@ object Asciidoc {
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}")
}
}