Suppose I have a text:
This is my text!
How beautiful it is!
And I want to wrap each line within a p
-tag, is there an easier way than to navigate to each line and add them manually and have them close semi-automatically?
I want them to look like this:
<p>This is my text!</p>
<p>How beautiful it is!</p>
while having to do as less as possible.