Matt DuVall
Matt DuVall
Hitting `ctrl + 6` should trigger... ``` a code block ```
per @zzimbler's feedback on https://github.com/mduvall/grande.js/issues/7. The hook would be on the text selection events to ensure that the node selected is in the list of nodes passed in the constructor.
Stated in https://github.com/mduvall/grande.js/issues/20. Chrome gracefully handles deleting the previousSibling , Firefox/IE do not however, will need to hook in `preprocessKeyDown` to ensure the right deletion happens.
Stated in ticket https://github.com/mduvall/grande.js/issues/20. Medium's behavior seems to merge all non-paragraph elements into the previousSibling paragraph. This will probably be good enough for now. This fix will likely be related...
Stated in ticket https://github.com/mduvall/grande.js/issues/20 This needs to handle backspace events to merge the nodes gracefully. Medium probably has a transformation map of what to do with element types (``s =>``s...
Currently execCommand with `bold` and `italic` produce the `` and `` tags respectively. There should be an override to the document.execCommand to support the additional args and fall back to...
The code's getting to a point where a test automation framework will be useful in order to merge code at a higher cadence. Catching logical regression should be fairly straightforward,...