Can I define a class name on paragraph using Markdown? If so, how?
If your flavour of markdown is kramdown, then you can set css class like this:
{:.nameofclass} paragraph is here
Then in you css file, you set the css like this:
.nameofclass{ color: #000; }