On Thu, May 10, 2018 at 4:04 AM, CodeingBoy <codeing...@gmail.com> wrote:
> I also wondering about the "80 character" limitation. To obey this > limitation, I have to break a sentence to multiple lines, which will > introduce several spaces in a whole sentence. > For example: > > Apache HTTP Server is configured by placing <a > href="mod/directives.html">directives</a> in plain text > configuration files. > > It will look like this in HTML version: > Apache HTTP Server is configured by placing directives in plain text > configuration files. > > For english, it is great. But for Chinese and Japanese, it is not so well: > > Apache は <a href="mod/directives.html" > >ディレクティブ</a> を設定ファイルに平文で書くことにより設定します。 > メインの設定ファイルは普通は <code>httpd.conf</code> という名前です。 > -> > Apache は ディレクティブ を設定ファイルに平文で書くことにより設定します。 メインの設定ファイルは普通は httpd.conf > という名前です。 > > ^ > 指令的参数通过空白符分隔, > 如果某一个参数包含空格,你必须使用双引号将该参数包裹起来。 > -> > 指令的参数通过空白符分隔, 如果某一个参数包含空格,你必须使用双引号将该参数包裹起来。 > ^ > Notice the unnecessary spaces indicating by ^. > > Mostly I could make use of xml tags to avoid those space, or hide them by > separating each sentence, so that spaces will be placed after the > period(which will not damaging reading experience much). But if there's a > long sentence without spaces, can I write the whole sentence in a > line(which means breaking the limitation)? > First off, thanks for your interest! And definitely collaborate with takashi's efforts, that is why the docs sub-project exists. Yes, it is impossible to have 80 column representations of some xml tags, and some CN/JP text. This should have been expressed as a SHOULD recommendation, not a MUST. Feel free to present the text as it aught to be represented. For some text begging for translation into simplified and classic Chinese (along with Hindi, Urdu, Arabic, etc), please have a look in the docs/error/ directory of httpd source? These are very 17 simple text blocks explaining HTTP errors to end users (browsers), and are enabled by admins on many httpd installations. (If you do, a single changeset to all 17 files would be greatly appreciated, so that we don't end up in a partial translation state.) But Apache projects are all about tackling projects that interest you, so please jump into the documents that interest you most. We don't set an agenda. And, please fix the typo in "Make sure all your lines in the xml file dont > exceed the 80 character lenght, so it is easy to read the file." > Fixed. For simplicity, next time, please consider posting the link for the file to be fixed.