It would be great if RFM supported formatted code snippets like GFM. So that
const buildselecthtml = (options, selected) =>
$.map(options, option =>
'<option ' + ((option.id === selected) ? ' selected="selected" ' : '') + ' value="' + option.id + '">' + option.name + '</option>')
.join('');
Could become
const buildselecthtml = (options, selected) =>
$.map(options, option =>
'<option ' + ((option.id === selected) ? ' selected="selected" ' : '') + ' value="' + option.id + '">' + option.name + '</option>')
.join('');
Which is a great deal easier to read
It would be great if RFM supported formatted code snippets like GFM. So that
Could become
Which is a great deal easier to read