jwasham / computer-science-flash-cards

Mini website for testing both general CS knowledge and enforce coding practice and common algorithm/data structure memorization.
Creative Commons Attribution Share Alike 4.0 International
8.46k stars 2.02k forks source link

Enable HTML escaping for code segments #27

Closed shivansh closed 7 years ago

shivansh commented 7 years ago

Currently, code segment like vector<int> is interpreted as vector and an opening <int> tag. Escaping the HTML for the code segment fixes this behavior.

jwasham commented 7 years ago

Thanks!