引用文中のインデントを通常の箇条書きにする
https://gyazo.com/239d9581186fb7a4508ea9b41573ad19
1. 引用文中のインデントを●にする
code:style.css
.line .quote .indent-mark .dot {
display: block;
position: absolute;
right: 9px;
top: 10px;
width: 6px;
height: 6px;
border-radius: 50%;
}
2. 引用文中のインデントのテキストの改行位置を揃える
1.5em=.indent-markの既定のwidth
code:style.css
.line .quote *:has(> .indent-mark + .indent) {
display: inline-block;
max-width: calc(100% - 1.5em);
& .indent {
display: inline-block;
}
}
使用例
https://gyazo.com/17f129a911eda4f260b16894a7285551
↓
https://gyazo.com/239d9581186fb7a4508ea9b41573ad19