All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
To: Linux Doc Mailing List <linux-doc@vger.kernel.org>
Cc: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>,
	Mauro Carvalho Chehab <mchehab@infradead.org>,
	linux-kernel@vger.kernel.org, Jonathan Corbet <corbet@lwn.net>,
	"David S. Miller" <davem@davemloft.net>,
	netdev@vger.kernel.org, Vladimir Oltean <olteanv@gmail.com>
Subject: [PATCH v3 14/20] docs: net: sja1105.rst: fix table format
Date: Fri,  7 Jun 2019 15:54:30 -0300	[thread overview]
Message-ID: <a2417b1817f946ea56fc944646fba3137037a390.1559933665.git.mchehab+samsung@kernel.org> (raw)
In-Reply-To: <ff457774d46d96e8fe56b45409aba39d87a8672a.1559933665.git.mchehab+samsung@kernel.org>

There's a table there with produces two warnings when built
with Sphinx:

    Documentation/networking/dsa/sja1105.rst:91: WARNING: Block quote ends without a blank line; unexpected unindent.
    Documentation/networking/dsa/sja1105.rst:91: WARNING: Block quote ends without a blank line; unexpected unindent.

It will still produce a table, but the html output is wrong, as
it won't interpret the second line as the continuation for the
first ones, because identation doesn't match.

After the change, the output looks a way better and we got rid
of two warnings.

Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Acked-by: Vladimir Oltean <olteanv@gmail.com>
---
 Documentation/networking/dsa/sja1105.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Documentation/networking/dsa/sja1105.rst b/Documentation/networking/dsa/sja1105.rst
index ea7bac438cfd..cb2858dece93 100644
--- a/Documentation/networking/dsa/sja1105.rst
+++ b/Documentation/networking/dsa/sja1105.rst
@@ -86,13 +86,13 @@ functionality.
 The following traffic modes are supported over the switch netdevices:
 
 +--------------------+------------+------------------+------------------+
-|                    | Standalone |   Bridged with   |   Bridged with   |
-|                    |    ports   | vlan_filtering 0 | vlan_filtering 1 |
+|                    | Standalone | Bridged with     | Bridged with     |
+|                    | ports      | vlan_filtering 0 | vlan_filtering 1 |
 +====================+============+==================+==================+
 | Regular traffic    |     Yes    |       Yes        |  No (use master) |
 +--------------------+------------+------------------+------------------+
 | Management traffic |     Yes    |       Yes        |       Yes        |
-|    (BPDU, PTP)     |            |                  |                  |
+| (BPDU, PTP)        |            |                  |                  |
 +--------------------+------------+------------------+------------------+
 
 Switching features
-- 
2.21.0


  parent reply	other threads:[~2019-06-07 18:55 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-07 18:54 [PATCH v3 01/20] ABI: sysfs-devices-system-cpu: point to the right docs Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 02/20] isdn: mISDN: remove a bogus reference to a non-existing doc Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 03/20] docs: zh_CN: get rid of basic_profiling.txt Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 04/20] docs: mm: numaperf.rst: get rid of a build warning Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 05/20] docs: bpf: get rid of two warnings Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 06/20] docs: mark orphan documents as such Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-11 16:52   ` Andy Shevchenko
2019-06-11 16:52     ` Andy Shevchenko
2019-06-11 16:52     ` Andy Shevchenko
2019-06-11 16:52     ` Andy Shevchenko
2019-06-11 17:05     ` Mauro Carvalho Chehab
2019-06-11 17:05       ` Mauro Carvalho Chehab
2019-06-11 17:05       ` Mauro Carvalho Chehab
2019-06-11 17:05       ` Mauro Carvalho Chehab
2019-06-11 18:23       ` Andy Shevchenko
2019-06-11 18:23         ` Andy Shevchenko
2019-06-11 18:23         ` Andy Shevchenko
2019-06-11 18:23         ` Andy Shevchenko
2019-06-07 18:54 ` [PATCH v3 07/20] docs: amd-memory-encryption.rst get rid of warnings Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 08/20] docs: zh_CN: avoid duplicate citation references Mauro Carvalho Chehab
2019-06-10  3:52   ` Alex Shi
2019-06-07 18:54 ` [PATCH v3 09/20] docs: it: license-rules.rst: get rid of warnings Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 10/20] docs: gpio: driver.rst: fix a bad tag Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 11/20] docs: security: trusted-encrypted.rst: fix code-block tag Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 12/20] docs: security: core.rst: Fix several warnings Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 13/20] docs: net: dpio-driver.rst: fix two codeblock warnings Mauro Carvalho Chehab
2019-06-07 18:54 ` Mauro Carvalho Chehab [this message]
2019-06-07 18:54 ` [PATCH v3 15/20] docs: move protection-keys.rst to the core-api book Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54   ` mchehab+samsung
2019-06-09  9:19   ` Geert Uytterhoeven
2019-06-09  9:19     ` Geert Uytterhoeven
2019-06-09  9:19     ` Geert Uytterhoeven
2019-06-09  9:19     ` geert
2019-06-07 18:54 ` [PATCH v3 16/20] docs: fix broken documentation links Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54   ` [Xen-devel] " Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54 ` Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 17/20] dt: bindings: fix some broken links from txt->yaml conversion Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-07 18:57   ` Mark Brown
2019-06-08 10:51     ` Mauro Carvalho Chehab
2019-06-08 10:51       ` Mauro Carvalho Chehab
2019-06-08 10:51       ` Mauro Carvalho Chehab
2019-06-07 19:07   ` Applied "ASoC: dt-bindings: fix some broken links from txt->yaml conversion" to the asoc tree Mark Brown
2019-06-07 19:07     ` Mark Brown
2019-06-07 18:54 ` [PATCH v3 18/20] docs: isdn: remove hisax references from kernel-parameters.txt Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 19/20] docs: fs: fix broken links to vfs.txt with was renamed to vfs.rst Mauro Carvalho Chehab
2019-06-07 18:54 ` [PATCH v3 20/20] docs: pci: fix broken links due to conversion from pci.txt to pci.rst Mauro Carvalho Chehab
2019-06-07 18:54   ` Mauro Carvalho Chehab
2019-06-08 15:37   ` Paul E. McKenney
2019-06-08 15:37     ` Paul E. McKenney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a2417b1817f946ea56fc944646fba3137037a390.1559933665.git.mchehab+samsung@kernel.org \
    --to=mchehab+samsung@kernel.org \
    --cc=corbet@lwn.net \
    --cc=davem@davemloft.net \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mchehab@infradead.org \
    --cc=netdev@vger.kernel.org \
    --cc=olteanv@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.