Quarto Book 실행 코드 출력물 스타일을 바꿔보자
Quarto Book 실행 코드 출력물 스타일을 바꿔보자
Quarto Book 실행 코드 출력물 스타일을 바꿔보자
style.css 파일에 아래와 같이 실행 코드 산출물 배경색을 정의 한다. 그리고 yaml 해더에 style.css
를 추가한다.
1
2
3
4
.styled-output .cell-output {
background-color: silver;
border-radius: 4px;
}
1
2
3
4
5
---
title: "Untitled"
format: html
css: style.css
---
Reference
- https://stackoverflow.com/questions/76610798/change-color-and-background-of-chunk-ouput-in-quarto-document
This post is licensed under CC BY 4.0 by the author.