From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <775b8d190808192056o34b69ea1n3f29fcec1fc40c9c@mail.gmail.com> Date: Wed, 20 Aug 2008 13:56:56 +1000 From: "Bruce Ellis" To: "Fans of the OS Plan 9 from Bell Labs" <9fans@9fans.net> In-Reply-To: <9F788D9D-8A71-4A6A-BE56-A1CBBB10F3B3@mac.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <382936.47212.qm@web57610.mail.re1.yahoo.com> <9F788D9D-8A71-4A6A-BE56-A1CBBB10F3B3@mac.com> Subject: Re: [9fans] Using the Acme Editor Topicbox-Message-UUID: 0195ee02-ead4-11e9-9d60-3106f5b1d025 We've seen that, and go to band practice. Tell us all about. Just keep up the therapy and the medication. brucee On Wed, Aug 20, 2008 at 1:54 PM, Pietro Gagliardi wrote: > Just a few other bits of relevance to the original topic: > > On Aug 19, 2008, at 11:52 AM, Wendell xe wrote: >> >> 07. Automatic insertion of spaces for tabs > > style(6) says not to convert tabs to spaces. > >> 11. Bookmarks > > If you know what text the bookmark will point to, make a comment on the line > above it: > /* C comment */ > .\" troff comment > # rc/awk comment > Set the comment to the text of the bookmark. Then, search for the text of > the bookmark with the appropriate comment delimiters. Easy enough. > >> 16. HTML tag matching > > An awk program can do this. The idea is to interpret tags as they come in > the form of a stack: > code stack > html > head > html > title > head > html > </b> title error: closing wrong tag > You can also check to see if tags make sense or bad tags are nested. For > example, don't see <body><body></body></body> as normal, nor > <title><b></b>. > > >