summaryrefslogtreecommitdiff
path: root/html2md.rb
diff options
context:
space:
mode:
Diffstat (limited to 'html2md.rb')
-rwxr-xr-xhtml2md.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/html2md.rb b/html2md.rb
index 97ccfa1..664cfa7 100755
--- a/html2md.rb
+++ b/html2md.rb
@@ -56,6 +56,8 @@ body.css('em').each { |i| i.replace("*#{i.inner_text}*") }
# Replace bold
body.css('b').each { |b| i.replace("**#{b.inner_text}**") }
body.css('strong').each { |b| i.replace("**#{b.inner_text}**") }
+# Replace strike
+body.css('strike').each { |strike| strike.replace("~~#{strike.inner_text}~~") }
# Replace horizontal rules
body.css('hr').each { |hr| hr.replace "\n\n---\n\n" }
# Remove carriage returns