From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [ELPA] New package: jami-bot and org-jami-bot Date: Fri, 12 Jan 2024 17:04:37 +0200 Message-ID: <83jzoeioe2.fsf@gnu.org> References: <875y0i7e43.fsf@hoowl.se> <87y1cyqoso.fsf@posteo.net> <83r0inj9oi.fsf@gnu.org> <87y1cupw0g.fsf@localhost> <83y1cuirfc.fsf@gnu.org> <87il3yprkx.fsf@localhost> <83ply6ipne.fsf@gnu.org> <8734v2pq3r.fsf@localhost> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="33029"; mail-complaints-to="usenet@ciao.gmane.io" Cc: stefankangas@gmail.com, rms@gnu.org, philipk@posteo.net, hanno@hoowl.se, emacs-devel@gnu.org To: Ihor Radchenko Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Jan 12 16:05:40 2024 Return-path: Envelope-to: ged-emacs-devel@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 1rOJ6J-0008HH-Q4 for ged-emacs-devel@m.gmane-mx.org; Fri, 12 Jan 2024 16:05:40 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rOJ5k-0000QR-3k; Fri, 12 Jan 2024 10:05:04 -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 1rOJ5i-0000Mp-3U for emacs-devel@gnu.org; Fri, 12 Jan 2024 10:05:02 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rOJ5h-0003Jn-Kk; Fri, 12 Jan 2024 10:05:01 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=qsVf84S84kFTTP4DLKw531MZw4woijqOfQ4RE+Uct28=; b=g8xwHLLSWsO5 p7I931QxvUfePsRDQBJUBTXRS1YzmoCGOMU9UnrkD8r99lXq50Jeh5F/YNXVI6QsohkDgnqu/0dhs SGbt4MA3a/FbFza6Pzyu9AZ+yIRP5bBD/1MNARBSb+6jZ1v8ZJ76heR/3qU6dBqObTlqCSB18mv51 TfnauxVs8kZg+XVTyJ+Pt4baG68MNG18YKo2eMGd/fgAh0nJTPwndrpQ51wi6LDbVKXm6weEwMO44 CsilnBntWe4H+E6Mb86kNDNZNBoK+rYBVvnWBESF+4euFdGjh/pdu2lrY70+PgwP6XLKGoTn85PCk 8f/ujrPxGKO4qGnmKrf/HQ==; In-Reply-To: <8734v2pq3r.fsf@localhost> (message from Ihor Radchenko on Fri, 12 Jan 2024 14:45:44 +0000) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:314906 Archived-At: > From: Ihor Radchenko > Cc: stefankangas@gmail.com, rms@gnu.org, philipk@posteo.net, hanno@hoowl.se, > emacs-devel@gnu.org > Date: Fri, 12 Jan 2024 14:45:44 +0000 > > Eli Zaretskii writes: > > >> One way or another, there should be some structure to the parser output. > >> Org parser output is just a nested list. > >> org-element-ast.el defines the details of what can be inside that list - > >> independent of the details of Org markup, and compatible with the > >> existing ox-* implementations. > > > > I don't see org-element-ast.el in the Emacs tree, so I cannot see what > > kind of structures it defines. > > Check out top comment in > https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-element-ast.el > > It is a part of the Org mode development branch. It's a beginning, but I somehow doubt that any list that matches the description in org-element-ast.el will be automatically exportable by ox-*.el.