Emmet coding lorem ipsum, not starting with lorem

MKroeders picture MKroeders · Jul 6, 2013 · Viewed 7.7k times · Source

Well I just started with emmet scripting/coding. So I found out you can easily generate lorem ipsum

div>lorem20

Only problem I am having I am using lots of lorem ipsum and every thing on the page starts with lorem ipsum. I tried to look if there is a way to say i want lorem ipsum but not starting with lorem ipsum and I can't find any answer to this question.

So the question is, can I easily generate lorem ipsum with emmet but don't let it start with lorem ipsum. (I know that I can remove it but that would be a waste of the syntax using

Answer

robsch picture robsch · Jan 11, 2017

It might be a new version now. But if I try it (in PHPStorm) with

div>lorem5*10

I get

<div>
    <div>Lorem ipsum dolor sit amet.</div>
    <div>Ea ipsam laboriosam recusandae voluptatibus?</div>
    <div>Animi laborum nam quaerat sequi!</div>
    <div>Obcaecati quos ratione tempora totam.</div>
    <div>Aspernatur porro possimus repellat suscipit?</div>
    <div>Harum incidunt ipsam iste vero?</div>
    <div>Architecto dolorem magni numquam voluptas?</div>
    <div>Porro recusandae totam ut veritatis.</div>
    <div>Dolorum earum laudantium magnam maiores.</div>
    <div>Non obcaecati sit veritatis voluptatibus.</div>
</div>

Every sentence starts with a different text.