-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
inline code blocks look nothing like multiline code blocks #52
Comments
`console.log('Foo Bar');const x = 'y';`
```javascript
console.log('Foo Bar');
const x = 'y';
```
Could you clarify what the code should look like? The spacing and the coloring? The code blocks can have a language tag on them like the above javascript one which seems to privide syntax highlighting. |
The inline code has a different background and different padding that the multiline block. To make them look more similar, I made the inline code have the same background as the multiline and additionally added some padding to the inline. |
Looks great to me! Thank you for the enhancement. |
The software development team I work on uses markdown to document our projects.
I really like your Ursine Umbra theme except for one detail.
The inline code blocks look nothing like multiline code blocks.
Code should stand out and look like code, whether it is inline or multiline in my opinion.
Suggested fix:
I additionally wanted this to give a bit more space between normal text and code blocks since the padding was increased but it isn't working. I tried Sh-F12 to use the Dev Tools to diagnose but
Typora kept locking up on me so I gave up.
Your thoughts?
The text was updated successfully, but these errors were encountered: