Skip to content

Commit

Permalink
swap filled/empty circle in jupyter
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorcampbell committed Dec 23, 2023
1 parent 39bf197 commit a585883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/jupyter.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ filled_circle <- function(){
if(is_latex_output()) {
"\\faCircle{}"
} else {
"\U25EF"
"\U2B24"
}
}
circle <- function(){
if(is_latex_output()) {
"\\faCircle[regular]{}"
} else {
"\U2B24"
"\U25EF"
}
}
```
Expand Down

0 comments on commit a585883

Please sign in to comment.