> According to the WIki documentation, you can hide text (as comments) > within a tiddler so that it is not displayed, it can be wrapped in /% > and %/. > I have noticed that when you are in view mode, however, the commented > text DOES take up space - so everything below is moved down. For > example, if you hade six lines of comments like this (as seen in edit > mode): > > Normal text line > /% Line 1 %/ > /% Line 2 %/ > /% Line 3 %/ > /% Line 4 %/ > /% Line 5 %/ > /% Line 6 %/ > Another normal text line
TW comments are not a line-by-line syntax. It simply omits from processing every character contained within the opening "/%" and the closing "%/". However, in your example above, there is a newline that occurs in between each comment, as it occurs *outside* the comment markers. In order to omit several lines of comments, you should enclose them within a single set of comment markers: Normal text line /% Line 1 Line 2 Line 3 Line 4 Line 5 Line 6 %/Another normal text line Note that the closing marker is on the same line as the text that follows it. This ensures that there is no extra newline occuring after the comment but before the text. enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en -~----------~----~----~----~------~----~------~--~---

