Some tests pass!

This commit is contained in:
2024-08-13 19:19:12 -03:00
parent 2a9e7fde0d
commit a704c59fa9
6 changed files with 67 additions and 28 deletions

View File

@@ -73,7 +73,7 @@ module Tartrazine
# These are true/false/nil
outp << "border: none;" if style.border == false
outp << "font-weight: bold;" if style.bold
outp << "font-weight: #{weight_of_bold};" if style.bold == false
outp << "font-weight: #{@weight_of_bold};" if style.bold == false
outp << "font-style: italic;" if style.italic
outp << "font-style: normal;" if style.italic == false
outp << "text-decoration: underline;" if style.underline