Open
Description
If I have the following formatted code:
+link({
name: 'Solutions',
subnav: {
sublinks: [
{name: 'WISP', url: '#', icon:'wisp'},
{name: 'Fiber', url: '#', icon:'fiber'},
{name: 'MDU', url: '#', icon:'mdu'},
{name: 'Voice', url: '#', icon:'voice'},
{name: 'Cable', url: '#', icon:'cable'},
{name: 'Enterprise', url: '#', icon:'enterprise'}
]
}
})
It gets formatted to the following:
+link({ name: 'Solutions', subnav: { sublinks: [ {name: 'WISP', url: '#', icon:'wisp'}, {name: 'Fiber', url: '#', icon:'fiber'}, {name: 'MDU', url: '#', icon:'mdu'}, {name: 'Voice', url: '#', icon:'voice'}, {name: 'Cable', url: '#', icon:'cable'}, {name: 'Enterprise', url: '#', icon:'enterprise'} ] }})
Is there any possible way to prevent this reformatting from happening, as it makes parsing the information far more difficult?