From 5c4c90ee022503ae87c821c5613421be110748b1 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Wed, 24 Feb 2016 08:15:14 +0000
Subject: [PATCH] The "normal" attribute is not high-intensity. Change bold,
 italic and underline conversion to not use a solid background color.

---
 exec/load/html2asc.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/exec/load/html2asc.js b/exec/load/html2asc.js
index 231b7de78b..ca282e72d4 100644
--- a/exec/load/html2asc.js
+++ b/exec/load/html2asc.js
@@ -7,9 +7,9 @@ function html2asc(buf, mono, footnotes)
 	var HEADING4		="\1H\1G";
 	var HEADING5		="\1H\1B";
 	var HEADING6		="\1H\1R";
-	var BOLD			="\1H\1C\x014";
-	var ITALIC			="\1H\1G\x012";
-	var UNDERLINE		="\1H\1W\x016";
+	var BOLD			="\1N\1H";
+	var ITALIC			="\1N\1C";
+	var UNDERLINE		="\1N\1B";
 	var STRIKE_THROUGH	="\1N\1K\x017";
 	var LIST_ITEM 		="\1N\r\n    \1H\1Wo \1G";
 	var links			=[];
-- 
GitLab