What tools do you recommend to generate a Lorem Ipsum text?

To generate Lorem Ipsum texts it is enough with an editor that has the shortcuts of Emmet activated.

For example Visual Studio Code has them. But you can put them as a plugin in many other editors. Simply search for the Emmet plugin or extension and install it.

Then, for example to create 5 paragraphs with a lorem ipsum you have to write the shortcut:

p*5>lorem

Important: All of these shortcuts will work on .html files and other files that accept HTML like .php. For example in a .js file they would not work…

once written you have to press the tabulator (TAB) for Emmet’s shortcut to expand.

You can write a Lorem text with the shortcut:

lorem

And then you hit tab.

For example, if you need to create a list with elements with a Lorem ipsum you could do something like this:

ul>li*3>lorem

But in this case, a shortcut like this is even more popular:

ul>li*10>{item $}

That, when expanded with the tab, will create a list with 10 elements and in each one the content will be “item 1”, “item 2″… up to “item 10”.

See also  jQuery $.get() to make an Ajax HTTP GET request
Loading Facebook Comments ...
Loading Disqus Comments ...