rainbow
rainbow copied to clipboard
tabs inside pre
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


how to resolve this ?
thanks
I think the tab-space CSS rule should help with that link
pre > [data-language] {
tab-space: 2; /* Default tab-space value is 8 */
}