I’m not sure what other CSS you have a play, but you could try this and adjust the values, try the commented out padding-block
, etc. Adjusting too much to the left-right will throw off the indentation guides (if you have those enabled) and smoosh the bullets into weird shapes.
.internal-embed[alt*='^'] {
padding-left: 5px;
& :is(p, ul, li) {
margin-block: 0;
/* padding-block: 0px; */
}
}
Reading view, no snippet:
Reading view with snippet:
1 Like
chrsle
May 31, 2024, 12:00pm
22
This is great, thank you so much!
Following snippet works great for me:
.internal-embed .markdown-embed-title {
display: none;
}
/* this makes the link disappear */
/.internal-embed .markdown-embed-link {
/ display: none;
/}
:is(li, .HyperMD-list-line) > .internal-embed[alt*='^'] {
display: inline-block;
vertical-align: top; /*default: middle*/
}
.internal-embed[alt*='^'] {
padding-left: 2px;
& :is(p, ul, li) {
margin-block: 0;
/* padding-block: 0px; */
}
}
No snippet:
With snippet:
system
Closed
August 29, 2024, 12:01pm
23
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.