rainbow icon indicating copy to clipboard operation
rainbow copied to clipboard

tabs inside pre

Open ggglyke opened this issue 8 years ago • 1 comments

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

ggglyke avatar Sep 11 '17 12:09 ggglyke

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

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

gingerchew avatar Jun 23 '21 20:06 gingerchew