It should convert tabs to spaces by default
It should convert space tabs to tabs with useTabs useTabs: true
It should not convert tabs to spaces inside "paste-as-is" docs
	hello
	hello
It should print pre-like tags without reindenting (LiquidRaw)
{% raw %} hello hello {% endraw %}
It should not convert tabs to spaces inside "paste-as-is" docs (LiquidRaw)
{% raw %} hello hello {% endraw %}
It should print pre-like tags without reindenting (capture tag)
{% capture var %} hello hello {% endcapture %}
It should not convert tabs to spaces inside "paste-as-is" docs (capture tag)
{% capture var %} hello hello {% endcapture %}
It should print pre-like tags without reindenting (pre)
  hello
  hello
It should not convert tabs to spaces inside "paste-as-is" docs (pre)
	hello
	hello
It should useTabs inside attributes too useTabs: true singleQuote: true