I am using haml, I have some strong text but after that text is continued, but haml adds an space between the strong text and non strong text. Is there a way to remove it, or proper way to write this sentence.
%strong
Unmet
, indicating your requirements are not satisfied.
This generates
Unmet , indicating your requirements are not satisfied.
There is a space between 'Unmet' and ','
How can I remove that space?
One solution I have read is to use an haml helper but that seems excessive for this little thing.
Also what about if I need space in the beginning but not at the end of the strong tag.
This is
%strong
Unmet
, indicating your requirements are not satisfied.
I would like the outcome to be like
This is Unmet, indicating your requirements are not satisfied.