ccampbell / rainbow

Simple syntax highlighting library written in javascript
http://rainbowco.de
Apache License 2.0
3.3k stars 465 forks source link

tabs inside pre #225

Open ggglyke opened 7 years ago

ggglyke commented 7 years ago

Hi,

I have some troubles with tab indent mith multiline code snippets. I initially used css property white-space: normal; to remove blanks but this remove all tabs and line breaks. In my html file, I need to indent my code to make it clean. But with this css property removed all tabs are rendered inside the pre tag

image

image

how to resolve this ?

thanks

gingerchew commented 3 years ago

I think the tab-space CSS rule should help with that link

pre > [data-language] {
    tab-space: 2; /* Default tab-space value is 8 */
}