Created
January 8, 2024 10:23
-
-
Save fdmysterious/1727fd0f5ab237908528c3fc5915b0a6 to your computer and use it in GitHub Desktop.
Better vscode markdown preview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
max-width: 1000px; | |
margin: auto; | |
} | |
img { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
p { | |
text-align: justify; | |
} | |
h2 { | |
margin-top: 30px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// ... // | |
"markdown.styles": [ | |
".vscode/assets/preview-style.css" // Replace with path to the css file | |
], | |
// ... // | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment