Question

I am just learning zen-coding and am trying to do this:

Entering 'lorem' and hitting tab will produce 50 word lorem text.

However, if I start with <p></p> and then type lorem + tab inside the tag, it does not produce the lorem text.

Is there a better way to do this?

Was it helpful?

Solution

Use this:

p>lorem

and then tab

OTHER TIPS

Since people are still reading this I will add, if you want to print off many lorems inside of p tags you can do this:

(p>lorem)*7

Replace 7 with how many lines you want!

use this:

<p>
lorem*(how many line you want) 
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top