Hi,
I want to customise the way code blocks look in markdown preview. What CSS selector do I need to use for that?
Here is a sample document:
foo `bar` baz
```
foo bar
```
Using the following CSS snippets I can modify the inline code but didn’t find the way to change the code block:
.markdown-preview.markdown-preview code {
color: white;
background-color: black;
}
.markdown-preview.markdown-preview pre {
color: white;
background-color: black;
}
What’s the trick?