From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AC653C33C9E for ; Fri, 17 Jan 2020 17:32:36 +0000 (UTC) Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7A1DB2073A for ; Fri, 17 Jan 2020 17:32:36 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7A1DB2073A Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lwn.net Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linux-kernel-mentees-bounces@lists.linuxfoundation.org Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 3D28385B29; Fri, 17 Jan 2020 17:32:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mNWOE1N2VD4W; Fri, 17 Jan 2020 17:32:30 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by hemlock.osuosl.org (Postfix) with ESMTP id 319F187B6D; Fri, 17 Jan 2020 17:32:30 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 0D3FAC1D81; Fri, 17 Jan 2020 17:32:30 +0000 (UTC) Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by lists.linuxfoundation.org (Postfix) with ESMTP id 7D9C9C077D for ; Fri, 17 Jan 2020 17:32:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 6645822176 for ; Fri, 17 Jan 2020 17:32:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id aGP4pp8MsRIh for ; Fri, 17 Jan 2020 17:32:21 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) by silver.osuosl.org (Postfix) with ESMTPS id 180D122005 for ; Fri, 17 Jan 2020 17:32:20 +0000 (UTC) Received: from lwn.net (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 4F1D1316; Fri, 17 Jan 2020 17:32:20 +0000 (UTC) Date: Fri, 17 Jan 2020 10:32:19 -0700 From: Jonathan Corbet To: "Daniel W. S. Almeida" Message-ID: <20200117103219.75de4b99@lwn.net> In-Reply-To: References: Organization: LWN.net MIME-Version: 1.0 Cc: mchehab+samsung@kernel.org, linux-kernel-mentees@lists.linuxfoundation.org, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org Subject: Re: [Linux-kernel-mentees] [PATCH 0/5] Documentation: nfs: convert remaining files to ReST. X-BeenThere: linux-kernel-mentees@lists.linuxfoundation.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: linux-kernel-mentees-bounces@lists.linuxfoundation.org Sender: "Linux-kernel-mentees" On Mon, 30 Dec 2019 02:04:42 -0300 "Daniel W. S. Almeida" wrote: > This series completes the conversion of Documentation/filesystems/nfs to ReST. OK, I've made a quick pass through these. They are mostly OK, with a couple of exceptions. One is that it has the "#." problem in enumerated lists, which needs to be fixed as was done with the previous set. And then there is: > Note that I chose csv-table over list-table because csv files are easier > to export from other software. That leads to results that look like this: > +Operations > +========== > + > +.. csv-table:: > + :header: "Implementation status", "Operation", "REQ, REC, OPT or NMI", "Feature (REQ, REC or OPT)", "Definition" > + :widths: auto > + :delim: ; > + > + ;"ACCESS";"REQ";;"Section 18.1" > + "I";"BACKCHANNEL_CTL";"REQ";;"Section 18.33" > + "I";"BIND_CONN_TO_SESSION";"REQ";;"Section 18.34" > + ;"CLOSE";"REQ";;"Section 18.2" > + ;"COMMIT";"REQ";;"Section 18.3" > + ;"CREATE";"REQ";;"Section 18.4" ...and that is essentially unreadable. Remember that the plain-text format matters too, so we can't do it this way. The original is in something fairly close to the RST multicell table format already; it shouldn't be too hard to add the tweaks needed to make sphinx happy...? Thanks, jon _______________________________________________ Linux-kernel-mentees mailing list Linux-kernel-mentees@lists.linuxfoundation.org https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees