From owner-dev-commits-doc-all@freebsd.org Sun Apr 11 14:19:45 2021 Return-Path: Delivered-To: dev-commits-doc-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C3BBA5D013C for ; Sun, 11 Apr 2021 14:19:45 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FJDXK5C3jz3kwC; Sun, 11 Apr 2021 14:19:45 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A57A5250ED; Sun, 11 Apr 2021 14:19:45 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13BEJj4D071763; Sun, 11 Apr 2021 14:19:45 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13BEJjaS071762; Sun, 11 Apr 2021 14:19:45 GMT (envelope-from git) Date: Sun, 11 Apr 2021 14:19:45 GMT Message-Id: <202104111419.13BEJjaS071762@gitrepo.freebsd.org> To: doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org From: "Danilo G. Baio" Subject: git: 1a48f0f904 - main - books/fdp-primer: Fix table Language Names MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: dbaio X-Git-Repository: doc X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 1a48f0f90462cc7d4c9030a54888569fd6d4a309 Auto-Submitted: auto-generated X-BeenThere: dev-commits-doc-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the doc repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2021 14:19:45 -0000 The branch main has been updated by dbaio (ports committer): URL: https://cgit.FreeBSD.org/doc/commit/?id=1a48f0f90462cc7d4c9030a54888569fd6d4a309 commit 1a48f0f90462cc7d4c9030a54888569fd6d4a309 Author: Danilo G. Baio AuthorDate: 2021-04-10 22:14:48 +0000 Commit: Danilo G. Baio CommitDate: 2021-04-11 14:16:03 +0000 books/fdp-primer: Fix table Language Names Column config was missed from D29573. Fix some escape chars introduced on a237bc3c647392fee48479ddf67a6b86c2677f4a. The \ is being printed in the output, adding a space at the beginning of the line trick the toc script (not messing the menu) and renders well. Approved by: carlavilla (doc) Differential Revision: https://reviews.freebsd.org/D29700 --- .../fdp-primer/asciidoctor-primer/_index.adoc | 28 +++++++++++----------- .../books/fdp-primer/po-translations/_index.adoc | 2 +- .../en/books/fdp-primer/rosetta/_index.adoc | 4 ++-- .../en/books/fdp-primer/translations/_index.adoc | 24 +++++++++---------- 4 files changed, 29 insertions(+), 29 deletions(-) diff --git a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc index 6f689de0d1..c2b5bc2ee8 100644 --- a/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc +++ b/documentation/content/en/books/fdp-primer/asciidoctor-primer/_index.adoc @@ -81,19 +81,19 @@ If the document type is `book` then there can be multiple level 0 (`=`) headings This is an example of headings in an `article`. .... -\= Document Title (Level 0) + = Document Title (Level 0) -\== Level 1 Section Title + == Level 1 Section Title -\=== Level 2 Section Title + === Level 2 Section Title -\==== Level 3 Section Title + ==== Level 3 Section Title -\===== Level 4 Section Title + ===== Level 4 Section Title -\====== Level 5 Section Title + ====== Level 5 Section Title -\== Another Level 1 Section Title + == Another Level 1 Section Title .... [WARNING] @@ -103,11 +103,11 @@ Section levels cannot be skipped when nesting sections. The following syntax is not correct. .... -\= Document Title + = Document Title -\== Level 2 + == Level 2 -\==== Level 4 + ==== Level 4 .... ==== @@ -121,12 +121,12 @@ To create a new paragraph leave one blank line. For example, this is a heading with two paragraphs. .... -\= This is the heading + = This is the heading -This is the first paragraph. -This is also the first paragraph. + This is the first paragraph. + This is also the first paragraph. -And this is the second paragraph. + And this is the second paragraph. .... [[asciidoctor-lists]] diff --git a/documentation/content/en/books/fdp-primer/po-translations/_index.adoc b/documentation/content/en/books/fdp-primer/po-translations/_index.adoc index c160fbd9cb..b38f21a016 100644 --- a/documentation/content/en/books/fdp-primer/po-translations/_index.adoc +++ b/documentation/content/en/books/fdp-primer/po-translations/_index.adoc @@ -152,7 +152,7 @@ _lang_ is a two-character lowercase code. [[po-translations-language-names]] .Language Names -[cols="1,1,1,1", frame="none", options="header"] +[cols="1,1,1", frame="none", options="header"] |=== | Language | Region diff --git a/documentation/content/en/books/fdp-primer/rosetta/_index.adoc b/documentation/content/en/books/fdp-primer/rosetta/_index.adoc index 3a716db03f..b6221643aa 100644 --- a/documentation/content/en/books/fdp-primer/rosetta/_index.adoc +++ b/documentation/content/en/books/fdp-primer/rosetta/_index.adoc @@ -75,8 +75,8 @@ a| a| [source] ---- -[[id]] -\= Section 1 + [[id]] + = Section 1 ---- |*Unordered list* diff --git a/documentation/content/en/books/fdp-primer/translations/_index.adoc b/documentation/content/en/books/fdp-primer/translations/_index.adoc index c257293d6a..897e3d5c67 100644 --- a/documentation/content/en/books/fdp-primer/translations/_index.adoc +++ b/documentation/content/en/books/fdp-primer/translations/_index.adoc @@ -160,7 +160,7 @@ Use git diff command to generate a diff and send it to the link:reviews.freebsd. % git diff > sv-faq.diff .... -Either way, you should use Bugzilla to link:https://bugs.freebsd.org/bugzilla/enter_bug.cgi[submit a report] indicating that you have submitted the documentation. +You should use Bugzilla to link:https://bugs.freebsd.org/bugzilla/enter_bug.cgi[submit a report] indicating that you have submitted the documentation. It would be very helpful if you could get other people to look over your translation and double check it first, since it is unlikely that the person committing it will be fluent in the language. Someone (probably the Documentation Project Manager, currently {doceng}) will then take your translation and confirm that it builds. @@ -201,13 +201,13 @@ The header of the English version of each document will look something like this [.programlisting] .... ---- -title: Why you should use a BSD style license for your Open Source Project -releaseinfo: "$FreeBSD: head/en_US.ISO8859-1/articles/bsdl-gpl/article.xml 53942 2020-03-01 12:23:40Z carlavilla $" -trademarks: ["freebsd", "intel", "general"] ---- + --- + title: Why you should use a BSD style license for your Open Source Project + releaseinfo: "$FreeBSD: head/en_US.ISO8859-1/articles/bsdl-gpl/article.xml 53942 2020-03-01 12:23:40Z carlavilla $" + trademarks: ["freebsd", "intel", "general"] + --- -\= Why you should use a BSD style license for your Open Source Project + = Why you should use a BSD style license for your Open Source Project .... The exact boilerplate may change, but it will always include a $FreeBSD$ line and the phrase `The FreeBSD Documentation Project`. @@ -221,10 +221,10 @@ So, the Spanish version of this file might start: [.programlisting] .... ---- -title: Soporte para segundos intercalares en FreeBSD -releaseinfo: "$FreeBSD: head/es_ES.ISO8859-1/articles/leap-seconds/article.xml 53090 2019-06-01 17:52:59Z carlavilla $" ---- + --- + title: Soporte para segundos intercalares en FreeBSD + releaseinfo: "$FreeBSD: head/es_ES.ISO8859-1/articles/leap-seconds/article.xml 53090 2019-06-01 17:52:59Z carlavilla $" + --- -\= Soporte para segundos intercalares en FreeBSD + = Soporte para segundos intercalares en FreeBSD ....