Skip to content

Commit

Permalink
Do not override output.attributeQuotes by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeche committed Mar 6, 2021
1 parent 843b50e commit 5fbc378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ def get_output_options(view: sublime.View, inline=False):
opt = {
'output.field': field,
'output.format': not inline,
'output.attributeQuotes': get_settings('attribute_quotes')
}

if syntax.doc_syntax(view) == 'html':
opt['output.attributeQuotes'] = get_settings('attribute_quotes')
opt['output.selfClosingStyle'] = get_settings('markup_style')
opt['output.compactBoolean'] = get_settings('markup_style') == 'html'

Expand Down

0 comments on commit 5fbc378

Please sign in to comment.