summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/helpers.cr13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/helpers.cr b/src/helpers.cr
index 9b79c27e..1492e7cc 100644
--- a/src/helpers.cr
+++ b/src/helpers.cr
@@ -287,19 +287,6 @@ def template_comments(root)
author = child["data"]["author"]
score = child["data"]["score"]
body_html = HTML.unescape(child["data"]["body_html"].as_s)
- body_html = XML.parse_html(body_html)
-
- body_html.xpath_nodes(%q(//a/@href)).each do |match|
- uri = URI.parse(match.content)
-
- if uri.host =~ /(www\.)?youtube.com/ && uri.path == "/watch"
- uri = uri.full_path
- end
-
- match.content = uri.to_s
- end
-
- body_html = body_html.to_s
replies_html = ""
if child["data"]["replies"] != ""