From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jens Lechtenboerger Subject: Re: [PATCH] ox-html: add option to restore old src block behaviour? Date: Sun, 13 Oct 2019 14:16:02 +0200 Message-ID: <87v9ssu9h9.fsf@informationelle-selbstbestimmung-im-internet.de> References: <87h8553kwm.fsf@informationelle-selbstbestimmung-im-internet.de> <87eezneg76.fsf@nicolasgoaziou.fr> <87wodfozc9.fsf@informationelle-selbstbestimmung-im-internet.de> <87d0f1cdc3.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:38203) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iJcnJ-0002Ns-57 for emacs-orgmode@gnu.org; Sun, 13 Oct 2019 08:16:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iJcnI-0001dF-2r for emacs-orgmode@gnu.org; Sun, 13 Oct 2019 08:16:16 -0400 Received: from mx2a.mailbox.org ([80.241.60.219]:18177) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iJcnG-0001ZB-IQ for emacs-orgmode@gnu.org; Sun, 13 Oct 2019 08:16:16 -0400 Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:105:465:1:2:0]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by mx2a.mailbox.org (Postfix) with ESMTPS id B772EA1ACA for ; Sun, 13 Oct 2019 14:16:06 +0200 (CEST) Received: from smtp2.mailbox.org ([80.241.60.241]) by spamfilter06.heinlein-hosting.de (spamfilter06.heinlein-hosting.de [80.241.56.125]) (amavisd-new, port 10030) with ESMTP id VlnDkP2txoxE for ; Sun, 13 Oct 2019 14:16:03 +0200 (CEST) In-Reply-To: <87d0f1cdc3.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Sun, 13 Oct 2019 09:30:04 +0200") 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: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain On 2019-10-13, at 09:30, Nicolas Goaziou wrote: > Jens Lechtenboerger writes: > >> Subject: [PATCH] ox-html: Control wrapping of source lines >> >> * lisp/ox-html.el (org-html-format-code, org-html-do-format-code): >> Use new export option :html-wrap-src-lines with variable >> org-html-wrap-src-lines to control whether source code lines should >> be wrapped in code elements or not. >> * doc/org-manual.org: Document the new option > > Applied. Would you mind adding an ORG-NEWS entry about it? Thanks! A patch is attached. Best wishes Jens --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-Mention-option-html-wrap-src-lines-in-ORG-NEWS.patch >From f2f93c573fef6a079c2f7f434e6c65d51e2f0906 Mon Sep 17 00:00:00 2001 From: Jens Lechtenboerger Date: Sun, 13 Oct 2019 14:06:09 +0200 Subject: [PATCH] Mention option html-wrap-src-lines in ORG-NEWS * etc/ORG-NEWS: Mention new option html-wrap-src-lines. --- etc/ORG-NEWS | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS index 9fff4ad16..0e07326cb 100644 --- a/etc/ORG-NEWS +++ b/etc/ORG-NEWS @@ -123,6 +123,12 @@ auto-commit attachments to git: one need to require the =org-attach-git= module in the startup. ** New features +*** New option to wrap source code lines in HTML export + +When new option ~html-wrap-src-lines~ (with variable +~org-html-wrap-src-lines~) is non-nil, HTML export wraps source code +lines in HTML ~code~ elements. + *** New option to handle schedules and deadlines in iCalendar export Export ignore done tasks with a deadline when -- 2.17.1 --=-=-=--