diff options
author | Admin <admin@marx.cafe> | 2022-12-12 00:28:46 -0500 |
---|---|---|
committer | Admin <admin@marx.cafe> | 2022-12-12 00:28:46 -0500 |
commit | b6d88468f984dcd1dbaf083e2b3d8f91b27cd0df (patch) | |
tree | 168b53311ba9f565a573fdfea7a0dce74a913257 | |
parent | da5a5d9ee726438e55e2eb63180bef156adfd30d (diff) |
Add strike support
-rwxr-xr-x | html2md.rb | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |