From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.help Subject: Is there a markdown-mode similar to org-mode? Date: Wed, 31 Jan 2024 13:19:42 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="28843"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Wed Jan 31 13:20:32 2024 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rV9Zw-0007Jd-Kt for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 31 Jan 2024 13:20:32 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rV9ZZ-00086q-9o; Wed, 31 Jan 2024 07:20:09 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rV9ZV-00084K-Tm for help-gnu-emacs@gnu.org; Wed, 31 Jan 2024 07:20:07 -0500 Original-Received: from schwantz.bang.priv.no ([2a01:4f9:c011:82fd::1]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rV9ZT-0000mf-7x for help-gnu-emacs@gnu.org; Wed, 31 Jan 2024 07:20:05 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=dod.no; s=sb; t=1706703582; bh=lZHuB92uZgkzRwZP+OrTa1wj/6bxvJevBZML8Rlc2fA=; h=From:To:Subject:Date:From; b=cfwSHTQQNG507z9lJ9e+svJaQzxhW1dkHz+Esw6nm4sOvjIplKvVgwQa2NKIsnJL+ GFIKwTmLSZWe2AboppfQC78ClB3L8AbmaMUSelsDW/Y6JiiB+45DF1HEeyjMLBsAYD ZJKFypfZUqf/h3OHwLgx60zlv3boY0H8Ze7DH37g= Original-Received: from AAP-5CG32757DH (unknown [84.210.69.52]) by schwantz.bang.priv.no (Postfix) with ESMTPSA id E79271A7 for ; Wed, 31 Jan 2024 12:19:41 +0000 (UTC) Received-SPF: none client-ip=2a01:4f9:c011:82fd::1; envelope-from=sb@dod.no; helo=schwantz.bang.priv.no X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:145833 Archived-At: Is there a markdown-mode similar to org-mode? I'm using markdown-mode right now to edit .md files and I find myself missing a lot of functionality I have in org-mode. This is what I'm missing at first edit, but there is probably more that I can't think about right now: 1. TAB to open and close trees (including unordered lists and ordered lists) 2. Treating lists similar to headings 3. Alt-arrow right and Alt-arrow left to switch level of headings and list items, and correctly change numbering of ordered lists (C-c arrow left and C-c arrow right does part of the work, but not the fixing of numbers in ordered lists. Also C-c arrow is a bit more clumsy than Alt-arrow but that can be fixed by a custom key binding)) So: changing of numbering in ordered list is what is missing here 4. Correctly set numbering of ordered lists when using Alt-RET to create a new list item 5. C-, to create a correctly indented code block and C-' to edit the content of the code block in a separate buffer Anyone know of a markown-mode with the above functionality? Ie. opening and closing of trees (both headings and lists), fixing of ordered list numbering and editing of code blocks? First workaround I thought of was to do the edit in org-mode and just export to markdown, but I have to cooperate with other people who will edit the .md file and have no idea of what to do with the .org file, so that's out. Thanks! - Steinar