Subject: Re: PROPOSAL: Indentation style and other nits
To: Rui Paulo <rpaulo@NetBSD.org>
From: Hubert Feyrer <hubert@feyrer.de>
List: netbsd-docs
Date: 07/18/2005 14:07:09
On Mon, 18 Jul 2005, Rui Paulo wrote:
> | located at this line too. For example:
> |
> | 	<exampletag>text text text text
> | 	text text text text
> | 	text text text text
> | 	text</exampletag>
> |
> | This problem appears only if you've used inline formatting, word
> | wrapping, and point xmlformat to non and, of course, may be
> | workarounded using the following way:
> |
> | 	<exampletag>
> | 	text text text text
> | 	text text text text
> | 	text text text text
> | 	text
> | 	</exampletag>
> |
> | I hope fix this bug, but haven't looking it closely :-/ Anyone?
>
> Well, isn't the proper way:
> 	<exampletag>text text text text
> 	  text text text text
> 	  text text text text
> 	  text</exampletag>
> ?

Personally I prefer

 	<exampletag>
 	  text text text text
 	  text text text text
 	  text text text text
  	</exampletag>

... which is also what most of the NetBSD and pkgsrc guide is in (or how
I left it...).


   - Hubert