From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2B22F138350 for ; Sat, 18 Jan 2020 10:15:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCB7CE07F2; Sat, 18 Jan 2020 10:15:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B903EE07F2 for ; Sat, 18 Jan 2020 10:15:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42A7834E0F9 for ; Sat, 18 Jan 2020 10:15:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3102290 for ; Sat, 18 Jan 2020 10:15:47 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1579336315.a127f6386c36615333f071d98128b66875551f33.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: bin/ X-VCS-Repository: proj/devmanual X-VCS-Files: bin/gen-eclass-html.sh X-VCS-Directories: bin/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: a127f6386c36615333f071d98128b66875551f33 X-VCS-Branch: master Date: Sat, 18 Jan 2020 10:15:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: afcaa12d-fb42-43fb-b49d-2dd834ef27d6 X-Archives-Hash: cdfab222bc56a40a3cd2f626f3476470 commit: a127f6386c36615333f071d98128b66875551f33 Author: Ulrich Müller gentoo org> AuthorDate: Sat Jan 18 08:31:55 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Jan 18 08:31:55 2020 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=a127f638 bin/gen-eclass-html.sh: More postprocessing for man2html. In order to silence the W3C Validator. Signed-off-by: Ulrich Müller gentoo.org> bin/gen-eclass-html.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/gen-eclass-html.sh b/bin/gen-eclass-html.sh index db19761..6ecfe9c 100755 --- a/bin/gen-eclass-html.sh +++ b/bin/gen-eclass-html.sh @@ -112,6 +112,9 @@ for i in $(/usr/bin/qlist eclass-manpages) /usr/share/man/man5/ebuild.5*; do -e 's:\([^<>]*\):\1:g' \ -e 's:\([^<>]*\):\1:g' \ -e 's:\([^<>]*\):\1:g' \ + -e 's:
:
:g' \ + -e 's:::g' \ + -e '/.*\(.*:\2 ID=\1>:}' \ >> "${FINAL}" echo -n "${FOOTER}" >> "${FINAL}" done