There's a huge diff just from the radio-group id, which is also used for radio-list-item names.
This makes the diff difficult to compare and practically useless, e.g. nus-cs2103/website@2a264dd
Currently, it's randomly generated:
|
group = Math.random().toString(36).substr(2, 5); // generate a new group id |
Suggestion: Explore smart deterministic generation based on a parameter.
smart → counting is deterministic generation, but isn't smart because removing a single file may affect the id of all other radio groups down the line. A possible example is relative file path — to be explored.
There's a huge diff just from the
radio-groupid, which is also used forradio-list-itemnames.This makes the diff difficult to compare and practically useless, e.g. nus-cs2103/website@2a264dd
Currently, it's randomly generated:
markbind/lib/markdown-it/markdown-it-radio-button.js
Line 21 in d25efcb
Suggestion: Explore smart deterministic generation based on a parameter.
smart → counting is deterministic generation, but isn't smart because removing a single file may affect the id of all other radio groups down the line. A possible example is relative file path — to be explored.