From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,2bd38291393bb69b X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit X-FeedAbuse: http://nntpfeed.proxad.net/abuse.pl feeded by 88.191.71.11 Path: g2news1.google.com!news3.google.com!feeder1-2.proxad.net!proxad.net!feeder2-2.proxad.net!nntpfeed.proxad.net!news.netfinity.fr!news.albasani.net!nuzba.szn.dk!news.jacob-sparre.dk!pnx.dk!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: need hint for adabrowse usage Date: Wed, 19 Dec 2007 17:08:01 -0600 Organization: Jacob's private Usenet server Message-ID: References: <1198019081.6939.1.camel@K72> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: jacob-sparre.dk 1198105537 6322 69.95.181.76 (19 Dec 2007 23:05:37 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Wed, 19 Dec 2007 23:05:37 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1914 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1914 Xref: g2news1.google.com comp.lang.ada:19009 Date: 2007-12-19T17:08:01-06:00 List-Id: "Georg Bauhaus" wrote in message news:1198019081.6939.1.camel@K72... > > On Tue, 2007-12-18 at 16:48 -0600, Randy Brukardt wrote: > > wrote in message > > news:c598ef51-35ec-4da1-8b8e-2d3d35704577@e6g2000prf.googlegroups.com... > > ... > > > -- I don't know how to collect Ada comments that have empty spaces > > > -- between them in the way I've formatted these paragraphs. > > > If you're using spaces to get the effect of tabs, it simply isn't possible > > in HTML. There are no tabs; the only way to get columnar layout is to format > > as a table or to format everything in fixed fonts -- the former is very > > difficult to do with unstructured source, and the latter is horribly ugly. > > I beg to differ, > > http://home.arcor.de/bauhaus/Tools/ASnip/sample-rm.html > and > http://home.arcor.de/bauhaus/Tools/ASnip/sample-antiq.html > > :) That's the ugly fixed font solution that I was talking about. It's probably the best that can be done avoiding tables, but for a lot of purposes (program code is one of the exceptions) it isn't very good. For instance, using it means that the width of the text is fixed, which means that the ability of the HTML to adjust to different screen sizes is lost. If you want text to look like: That is very hard to do in a portable manner. I've fought browser issues and tooling issues a lot in getting that sort of thing to look good -- but it is best to avoid it. Randy.