From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.4 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 5064 invoked from network); 16 Feb 2022 06:08:31 -0000 Received: from lists.zx2c4.com (165.227.139.114) by inbox.vuxu.org with ESMTPUTF8; 16 Feb 2022 06:08:31 -0000 Received: by lists.zx2c4.com (OpenSMTPD) with ESMTP id 8a9246b6; Wed, 16 Feb 2022 06:08:15 +0000 (UTC) Return-Path: Received: from pb-smtp21.pobox.com (pb-smtp21.pobox.com [173.228.157.53]) by lists.zx2c4.com (OpenSMTPD) with ESMTPS id 1f69bc68 (TLSv1.2:ECDHE-ECDSA-AES256-GCM-SHA384:256:NO) for ; Wed, 16 Feb 2022 06:08:13 +0000 (UTC) Received: from pb-smtp21.pobox.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 78E5D176897 for ; Wed, 16 Feb 2022 01:08:11 -0500 (EST) (envelope-from tmz@pobox.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=pobox.com; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; s=sasl; bh=XadCcxofd/QE or3Vbf+ij04aoRD1Rb8V7dNQiRhC+jE=; b=irBeIG2Rsw7WbWeMQC31euyskIIw c9ULue5sEyCfTzwkyx5CWoPhzKk/iGV/3CO6K/D878QMz/IxEzfZ0ZMpKr+sO/+F 2eiFevYdVSU9eadCfoHbZtdNBnStVOpOf2w9eykvf6Rt800wii7LNSS4G9bvFNma mTZwuIaVV2YKXjY= Received: from pb-smtp21.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 72235176896 for ; Wed, 16 Feb 2022 01:08:11 -0500 (EST) (envelope-from tmz@pobox.com) Received: from morphine.paradise.teonanacatl.net (unknown [47.204.117.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp21.pobox.com (Postfix) with ESMTPSA id E5B8C176892 for ; Wed, 16 Feb 2022 01:08:06 -0500 (EST) (envelope-from tmz@pobox.com) From: Todd Zullinger To: cgit@lists.zx2c4.com Subject: [PATCH 2/2] index: avoid formatting issue in git clone instructions Date: Wed, 16 Feb 2022 01:07:58 -0500 Message-Id: <20220216060758.949317-3-tmz@pobox.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220216060758.949317-1-tmz@pobox.com> References: <20220216060758.949317-1-tmz@pobox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Pobox-Relay-ID: CFC1AA26-8EEE-11EC-A358-CBA7845BAAA9-09356542!pb-smtp21.pobox.com Content-Transfer-Encoding: quoted-printable X-BeenThere: cgit@lists.zx2c4.com X-Mailman-Version: 2.1.30rc1 Precedence: list List-Id: List for cgit developers and users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: cgit-bounces@lists.zx2c4.com Sender: "CGit" The bulleted list which includes instructions for cloning cgit are intended to be formatted as: * clone the repo: * git clone https://git.zx2c4.com/cgit with the git clone command being a nested list. This does not work with markdown-python and instead is rendered as two separate bullet points. According to upstream=C2=B9: Python-Markdown consistently requires 4 spaces of indent per level or it ignores the indent While we could adjust the indent level, it seems cleaner to simply remove the nested list item for the git clone command and format it as code. =C2=B9 https://github.com/Python-Markdown/markdown/issues/125#issuecommen= t-7210925 Signed-off-by: Todd Zullinger --- index | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index b/index index 048ab05..2570c42 100644 --- a/index +++ b/index @@ -35,8 +35,7 @@ Features Source Code ----------- * download current or past [releases][] - * clone the repo: - * git clone https://git.zx2c4.com/cgit + * clone the repo: `git clone https://git.zx2c4.com/cgit` * see the [README][] for build instructions =20 [releases]: /cgit/refs/tags --=20 2.35.1