-
Notifications
You must be signed in to change notification settings - Fork 83
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels