From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean Louis Subject: Re: The name attribute is obsolete. Consider putting an id attribute Date: Sun, 19 Mar 2017 14:54:40 +0300 Message-ID: <20170319115440.GD17180@protected.rcdrun.com> References: <20170318130428.GA1940@protected.rcdrun.com> <87lgs139d6.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46720) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cpZdy-00084o-C4 for emacs-orgmode@gnu.org; Sun, 19 Mar 2017 08:09:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cpZdv-0001uw-5r for emacs-orgmode@gnu.org; Sun, 19 Mar 2017 08:09:06 -0400 Received: from stw1.rcdrun.com ([217.170.207.13]:60211) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cpZdu-0001sZ-Tj for emacs-orgmode@gnu.org; Sun, 19 Mar 2017 08:09:03 -0400 Content-Disposition: inline In-Reply-To: <87lgs139d6.fsf@nicolasgoaziou.fr> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Nicolas Goaziou Cc: emacs-orgmode@gnu.org On Sun, Mar 19, 2017 at 10:26:45AM +0100, Nicolas Goaziou wrote: > Hello, > > Jean Louis writes: > > > I am exporting Org to Markdown, and when used with: > > > > > > > >

What is GNU CLISP?

> > This is not Markdown syntax. You should check the part of your process > responsible for turning Markdown into HTML. > > For the record, by default, Org uses "id" instead of "name" when it > generates HTML. See `org-html-allow-name-attribute-in-anchors'. Here below is the org file, and if I process it with: emacs tmp/test.org --batch -f org-mode -f org-md-export-to-markdown Then I get the file, where I can see the following line: # What is GNU CLISP? And the option org-html-allow-name-attribute-in-anchors is off, and I am not sure if it influences markdown export at all. Do you know how to turn name= off in org-md-export-to-markdown ? Jean -------------- org file below ------------ #+TITLE: GNU CLISP is an ANSI Common Lisp Implementation * What is GNU CLISP? [[http://www.lisp.org][Common Lisp]] is a high-level, general-purpose, object-oriented, dynamic, functional programming language. [[http://clisp.org][GNU CLISP]] is a Common Lisp implementation by [[http://www.haible.de/bruno/][Bruno Haible]], then of Karlsruhe University, and [[http://www.faculty.iu-bremen.de/mstoll/][Michael Stoll]], then of Munich University, both in Germany. It implements the language described in the [[http://www.lispworks.com/documentation/HyperSpec/Front/][ANSI Common Lisp standard]] with many extensions. * What is LISP? LISP is a list-processing programming language, a flexible functional programing language that manipulates symbols in the form of lists.