karanveerm / quizgen

Simple Html Quiz Generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add escape character for question started with *

jakiro2017 opened this issue · comments

Due to the question sometime need to start with * like this

* {
  text-align: center;
  color: blue;
}

So we need escape character to avoid the confusion with a reply option, like this

\* {
  text-align: center;
  color: blue;
}

This is fixed in pr #9