From e59d3b1b06c859370e7c7c2c6c7a5788907279a7 Mon Sep 17 00:00:00 2001 From: Admin Date: Mon, 12 Dec 2022 01:04:32 -0500 Subject: Typo in html2md --- html2md.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html2md.rb') 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 -- cgit v1.2.3