Stealth embed and embed options

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. :melting_face:

.internal-embed[alt*='^'] {
    padding-left: 5px;
        
    & :is(p, ul, li) {
        margin-block: 0;
       /* padding-block: 0px; */
    }
}

Reading view, no snippet:

Screenshot 2024-05-30 110041

Reading view with snippet:

Screenshot 2024-05-30 110144

1 Like

This is great, thank you so much! :pray:

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:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.