simonewebdesign / real-time-web-chat

A chat server and client built with Node, Socket.io, Express and MongoDB. Hosted on OpenShift
3 stars 0 forks source link

Remove markdown support #39

Closed simonewebdesign closed 10 years ago

simonewebdesign commented 10 years ago

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:

  1. c458d29062ffc502c3e344ac1efed16341eb9235
  2. 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.