From 315ebc10f3351d5e45febaa47ec391ef8f3535c6 Mon Sep 17 00:00:00 2001 From: hashirama Date: Tue, 21 May 2024 00:22:50 -0400 Subject: [PATCH] fix single-char bdword link --- src/hakurei.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hakurei.cpp b/src/hakurei.cpp index 7b8572a..b854df9 100644 --- a/src/hakurei.cpp +++ b/src/hakurei.cpp @@ -215,7 +215,7 @@ inline void wrap_html_output( std::cerr << "Error: Unable to remove a character from the sentence. Exiting to prevent infinite loop." << std::endl; break; } - output_html += "
" + removed_char + "
"; + output_html += "
" + removed_char + "
"; sentence_copy = new_sentence_copy; } }