how to add nesting and navigation to text information
2013-12-01azim58 - how to add nesting and navigation to text information
To add nesting (collapsable lists) and navigation to text information one
could use a text editor like Notepad++ (Notepadplusplus). Just set the
language to perl, and put a block of text between
andand it will be
collapsible.
First read about the idea here
http://sourceforge.net/p/notepad-plus/discussion/331754/thread/c01d98f7
===========================================================================
Here is an alternative option
To add nesting (collapsable lists) and navigation to text information one
could format the text for an IDE. For example, in the Eclipse Java IDE,
the following text would be nested and navigatable.
public class test
class test3
{
class test4
{
/*
* all my text here
*/
}
}
see also 3-5-13d1140 regex to reformat a hyphenated heirarchical list
into Java like code so that it can be viewed in an IDE
see also how I like to mark and organize layered text information