There are cases I need lorem ipsum dummy text when I am experimenting with Tiddlywiki.
I have found two macros:
- in Tiddlywiki.com there is a macro
<<.lorem>>which generate a one paragraph standard lorem ipsum - in kookma/Utility there is macro
<<.lorem n>>which accepts a parameternwhich determines how many paragraphs (how many times repeat the standard paragraph) should be displayed.
Question
Is there any other solution, or can you propose your own solution, for having a .lorem macro with below features:
-
<<.lorem>>print the standard one paragraph lorem ipsum - have one parameter to let user
2.1 printnwords
2.2 printnlines
2.3 printnparagraphs
a crude idea
I thought may be I can have a <<lorem n>> and in macro I parse the parameter for number of items requested by user. Here item means: Character, Word, Line, Paragraph e.g.
-
<<.lorem 25c>>print 25 characters -
<<.lorem 60w>>print 60 words -
<<.lorem 10l>>print 10 lines -
<<.lorem 4p>>print 4 paragraphs
I am sure you will propose better solution!