All I want to Christmas is to be able to bold a line in that includes a [[Page Reference]] and have it stay bold. Any workarounds for this #roamcult?
Conversation
Maybe we could find a workaround if you were happy with the whole block rendered in bold :).
Quote Tweet
First success in preserving basic block styling in #Roam while editing the block :). Pure CSS for blockquotes. #roamcult @beauhaan @AbhayPrasanna
Show this thread
GIF
1
1
Would this be what you need?
2
2
CSS for those that want it:
.roam-block-container[data-page-links*='bold'] > div.rm-block-main > div:nth-child(2) {
font-weight: 600;
}
span.rm-page-ref[data-tag="bold"] {
display: none;
}



