GuangluWu / obsidian-pisum

This is an obsidian theme with clean line-drawing appearance. Only dark mode available.
33 stars 12 forks source link

Code Block - indentation issues #3

Closed IceFlowerLi closed 3 years ago

IceFlowerLi commented 3 years ago

Thanks for contributing this beautiful theme! A little problem is that some strange indenting in the editor when using code blocks. In the pisum theme and edit mode, when I insert Tab key in front of the line, the test code is displayed in editor without Tab Indent:

int main(void)
{
return 0;
}

When I reset the theme into default and also in editor, it displays right:

int main(void)
{
    return 0;
}
LuckyNum commented 3 years ago

@IceFlowerLi

delete this line in the theme file (Pisum.css).

image

IceFlowerLi commented 3 years ago

Thanks you! The problem is solved. :+1: