We don't need markdown in our chat, that's why we are going to remove it.
Basically we need to revert those commits:
c458d29062ffc502c3e344ac1efed16341eb9235
286d080bab8f6d16da4343852c5a3182892d47c1
Sometimes you may want to undo a whole commit with all changes. Instead of going through all the changes manually, you can simply tell git to revert a commit, which does not even have to be the last one. Reverting a commit means to create a new commit that undoes all changes that were made in the bad commit. It remains there, but it no longer affects the the current master and any future commits on top of it. (source)
After removing the commits, please push to production and check that everything works.
Markdown is just annoying in our app. It causes bugs. For example if we paste a link like:
http://example.com/img_3245_sdf.gif
it is being parsed and becomes:
http://example.com/img3245sdf.gif
And it breaks, obviously.
We don't need markdown in our chat, that's why we are going to remove it.
Basically we need to revert those commits:
c458d29062ffc502c3e344ac1efed16341eb9235
286d080bab8f6d16da4343852c5a3182892d47c1
Sometimes you may want to undo a whole commit with all changes. Instead of going through all the changes manually, you can simply tell git to
revert
a commit, which does not even have to be the last one. Reverting a commit means to create a new commit that undoes all changes that were made in the bad commit. It remains there, but it no longer affects the the current master and any future commits on top of it. (source)After removing the commits, please push to production and check that everything works.