summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2014-06-17 15:50:53 -0600
committerDan Allen <dan.j.allen@gmail.com>2014-06-17 15:50:53 -0600
commit2e68c355fea566002a07e2bc7a89d7bda81f5c8d (patch)
tree128d57cb27b9bc2f2620a470445eee055da5ec62
parentf7e1159d12f3e65fa4ad0de9eb082ee48113cfde (diff)
add conum class to b element when icons are disabled
-rw-r--r--lib/asciidoctor/converter/html5.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asciidoctor/converter/html5.rb b/lib/asciidoctor/converter/html5.rb
index e595fb1e..8ed94cbb 100644
--- a/lib/asciidoctor/converter/html5.rb
+++ b/lib/asciidoctor/converter/html5.rb
@@ -961,7 +961,7 @@ Your browser does not support the video tag.
src = node.icon_uri("callouts/#{node.text}")
%(<img src="#{src}" alt="#{node.text}"#{@void_element_slash}>)
else
- %(<b>(#{node.text})</b>)
+ %(<b class="conum">(#{node.text})</b>)
end
end