Skip to content

Commit

Permalink
looks like for the time being, no html support needed in backend (?)
Browse files Browse the repository at this point in the history
  • Loading branch information
windoverwater committed Mar 29, 2024
1 parent d01ec0f commit 78b4fac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/vtp/cli/_arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,5 +137,8 @@ def add_output_style(parser):
"--output_style",
type=str,
default="text",
help="'text' is normal text; 'html' will decorate output with html markers (def='text')",
help=(
"'text' is normal text; 'html' will decorate output with html "
"markers (def='text')"
),
)
2 changes: 1 addition & 1 deletion src/vtp/ops/operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def imprimir_formatting(
case "horizontal_shortline":
a_line = '<hr width="50%">'
case "empty_line":
a_line = "<br>"
a_line = ""
case "begin_good_box":
a_line = "*" * 12
case "end_good_box":
Expand Down

0 comments on commit 78b4fac

Please sign in to comment.