summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhtml2md.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/html2md.rb b/html2md.rb
index 664cfa7..ae39111 100755
--- a/html2md.rb
+++ b/html2md.rb
@@ -54,8 +54,8 @@ end
body.css('i').each { |i| i.replace("*#{i.inner_text}*") }
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}**") }
+body.css('b').each { |b| b.replace("**#{b.inner_text}**") }
+body.css('strong').each { |b| b.replace("**#{b.inner_text}**") }
# Replace strike
body.css('strike').each { |strike| strike.replace("~~#{strike.inner_text}~~") }
# Replace horizontal rules