Here I have some play script, I want to format it like this:
That is: character name and their line should have in-paragraph spacing, not between-paragraph sapcing. And the line should have 2em indentation.
I can think two ways to do this:
1. Using < br/ >, and add lots of & #160; which is so dumb.
2. Using two < p >, and set margin-bottom of the upper paragraph and margin-top of the lower paragraph to 0, and set lower paragraph text-indent to 2em. Which is to much code to my taste.
So I want to know is there any more elegant way to achieve this outcome?