Fix main width

This commit is contained in:
mars 2022-10-09 02:06:16 -06:00
parent b7684c5f24
commit 8ae57a2413
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ fn main() {
let dom = parse::Parser::parse(&expr);
let style = Stylesheet::default();
let width = 4;
let width = 40;
for tag in dom.tags.iter() {
for line in tag.layout(&style, width) {