https://github.com/richfitz/rfiglet
R port of figlet
https://github.com/richfitz/rfiglet
Last synced: 5 months ago
JSON representation
R port of figlet
- Host: GitHub
- URL: https://github.com/richfitz/rfiglet
- Owner: richfitz
- License: other
- Created: 2015-04-05T08:16:15.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-02-08T12:45:44.000Z (over 5 years ago)
- Last Synced: 2025-04-10T02:58:57.679Z (over 1 year ago)
- Language: R
- Homepage: https://richfitz.github.io/rfiglet/
- Size: 186 KB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
```{r, include = FALSE}
knitr::opts_chunk$set(
error = FALSE,
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
code_output <- function(x) {
writeLines(c("```", x, "```"))
}
```
```{r, echo = FALSE, results = "asis"}
code_output(rfiglet::figlet("rfiglet"))
```
[](https://www.repostatus.org/#wip)
[](https://github.com/richfitz/rfiglet/actions)
[](https://codecov.io/github/richfitz/rfiglet?branch=master)
[](https://www.codefactor.io/repository/github/richfitz/rfiglet)

rfiglet is a pure-R implementation of [FIGlet](https://en.wikipedia.org/wiki/FIGlet) (Frank, Ian and Glenn's letters) a classic system for creating text banners in many fonts.
```{r, echo = FALSE, results = "asis"}
code_output(rfiglet::figlet("fonts", "3d_diagonal"))
```
There are many FIGlet compatible fonts; to keep things small, this package only includes the base set included by FIGlet
```{r, echo = FALSE, results = "as-is"}
writeLines(paste(" *", rfiglet::figlet_font_list()))
```
However, several hundred extra fonts can be installed using
```r
rfiglet::figlet_download_fonts()
```
```{r, echo = FALSE, results = "asis"}
code_output(rfiglet::figlet("Install", "cosmic"))
```
```r
remotes::install_github("richfitz/rfiglet", upgrade = FALSE)
```
## License
MIT © Richard G. FitzJohn