I find myself in a scenario where I require a paragraph that has a specific format:
An Emphasized Title Some relevant information regarding the subject...
I am looking to insert a new line before the title, ensuring it seamlessly integrates with the rest of the paragraph.
There are two methods that come to mind for achieving this effect:
- Insert a
<br />
tag. - Enclose the title within a paragraph tag and adjust its display to be completely inline.
The challenge lies in option (2) as I have limited control over the HTML, which is auto-generated from Markdown within the Jekyll framework.
(1) is typically discouraged due to being considered poor practice, but it could potentially be the most suitable approach in this particular situation.
Are there any other alternatives worth exploring?
Edit
Decided to mark this as a duplicate; utilizing float
seems to be the ideal solution.