From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964926AbdEONk7 (ORCPT ); Mon, 15 May 2017 09:40:59 -0400 Received: from mout.gmx.net ([212.227.17.20]:51857 "EHLO mout.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933582AbdEONkz (ORCPT ); Mon, 15 May 2017 09:40:55 -0400 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= To: linux-doc@vger.kernel.org Cc: linux-kernel@vger.kernel.org, =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Subject: [PATCH 1/6] Documentation: coding-style: Escape \n\t to fix HTML rendering Date: Mon, 15 May 2017 15:40:07 +0200 Message-Id: <20170515134012.21222-1-j.neuschaefer@gmx.net> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Provags-ID: V03:K0:BBfZMt8s61QedvQkGsoLYl5BE5FaPwU/bMN2qowt0Y0m9awu70c D6ErwKfUy2mBAzC5xbQCQVMMy4GgB23cqkp8iDyqBCLkDadMNpx1d8U4KZDd77kPAtXLw3h 54nSDStRyEEegsVvRw2nr/sGe/6+bZRy1GiQGgtpvhCD3Juh+pcpicFoMdJhOy7NIHGsnEQ 6T9RuQuWEWcVqMxSR0i1A== X-UI-Out-Filterresults: notjunk:1;V01:K0:952g44YCqns=:DgIj8NrrmeVMv385NJajKL CREefGHxqOhnBGR4OZVFw7I1q5aDtA188/zF4DXDEg2qwP8wSebQU0W2AvPioONp0lcwl0FUz 2ZdLec7pjsckjMyFR60UoNpQ2Rfz6QkJe5+ybM4VycNSmaQPb5W4bWEYja5zKx+Ree8KEEbEr Es4mikCLmilo9bSp8ZOpoxLBo0Kzz8xp0WUytOX61eyxXWY+8Y6SgcaqfLSwYWqkzhXIakth1 0UxambSj+RMq4Y/jQYSvddlw/e0K4gejDcL865j5b5N1gkYIKbyN6DT+Brh7rLNwLhaTd56b9 uDPZD/uB1GvLkIPSjg2PrpnS9FzT3Ges13Zyzs8Q/wWtMz93TbEgJxNf9N6A40eKmSKIPa/Ut ax9t6HBYbIkdX9Tqez7/VTChSM2eSP6qwVnD3AsAtNhGvsK+tDsMKn//g7jucnEwyYWwvcK24 /eUBCdlDe5EnFKs+JoijieE4X8IJE+Hg+ME7pPTa+gSRNpWSp+Qdyc4kboq5kSOPra6fN4xU+ BKsD6FzXrjlpF5usxyTfxY6NfsuKt026+VkIAK5LSMgJ9h0KlR1zgdwsSHCp5PqkY2qbmXzjD mnJguZJKooAUs2JAq4ube1e180AJ8ZpMwlWfTvfYKkBqxoyuIGacMDbN1GRx4XeBE/5NKUoOb MtyIwoPWxjMBP1pUrwtGWRFG0arWm46D4HqlNQwqUP1HDQrHANaXEzXuylqQzj8JypNaQhB4x B8Tt8da7pIFzRsIAl1u0xlun/vFTQEVtBgzL0Uf6TzjH+uepq15i/ieqzra/MMpwo3GznYPMB r01WpwO Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Without this patch, Sphinx renders the sentence as follows, thus hiding the backslashes: [...] end each string except the last with nt to properly indent the next instruction [...] Signed-off-by: Jonathan Neuschäfer --- Documentation/process/coding-style.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/process/coding-style.rst b/Documentation/process/coding-style.rst index d20d52a4d812..7710c7e0240c 100644 --- a/Documentation/process/coding-style.rst +++ b/Documentation/process/coding-style.rst @@ -980,7 +980,7 @@ do so, though, and doing so unnecessarily can limit optimization. When writing a single inline assembly statement containing multiple instructions, put each instruction on a separate line in a separate quoted -string, and end each string except the last with \n\t to properly indent the +string, and end each string except the last with ``\n\t`` to properly indent the next instruction in the assembly output: .. code-block:: c -- 2.11.0