figletr
figletr copied to clipboard
Control line wrap/line width
Can I increase the size or width of a line?
For example, the below is wrapped after the second 'a', and I'd like it all to be on one line.
> figlet('starwars',
+ respect.linebreaks = FALSE,
+ smush = TRUE,
+ font = "starwars")
_______.___________. ___ .______ ____ __ ____ ___
/ | | / \ | _ \ \ \ / \ / / / \
| (----`---| |----` / ^ \ | |_) | \ \/ \/ / / ^ \
\ \ | | / /_\ \ | / \ / / /_\ \
.----) | | | / _____ \ | |\ \----. \ /\ / / _____ \
|_______/ |__| /__/ \__\ | _| `._____| \__/ \__/ /__/ \__\
.______ _______.
| _ \ / |
| |_) | | (----`
| / \ \
| |\ \----.----) |
| _| `._____|_______/
options(width = 999)
didn't change anything.