emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Kyle Meyer <kyle@kyleam.com>
To: Zelphir Kaltstahl <zelphirkaltstahl@posteo.de>
Cc: emacs-orgmode@gnu.org
Subject: Re: org-mode export toggle checkboxes
Date: Fri, 04 Dec 2020 06:10:05 GMT	[thread overview]
Message-ID: <87lfeeje5r.fsf@kyleam.com> (raw)
In-Reply-To: <ba3a8e74-4fb8-fff9-ee81-9784f8510fa8@posteo.de>


Zelphir Kaltstahl writes:

> Hello Emacs and Org-Mode Users,
>
> I have a question regarding the export options of org-mode.
>
> Is there a way to toggle, whether checkboxes are exported to markdown
> and plain text (ASCII buffer / file)? I did not find any on
> https://orgmode.org/manual/Export-Settings.html and so far I tried the
> following:
[...]

I'm not aware of an option to control this.  You could accomplish it
with a filter though:

    (defun my/ox-md-ascii-filter-checkboxes (ast backend info)
      (if (org-export-derived-backend-p backend 'md 'ascii)
          (org-element-map ast 'item
            (lambda (i)
              (org-element-put-property i :checkbox nil))
            info)
        ast))
    
    (add-to-list 'org-export-filter-parse-tree-functions
                 #'my/ox-md-ascii-filter-checkboxes)


more details: (info "(org)Advanced Export Configuration")


  reply	other threads:[~2020-12-04  6:10 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-16 11:36 org-mode export toggle checkboxes Zelphir Kaltstahl
2020-12-04  6:10 ` Kyle Meyer [this message]
2020-12-27 12:08   ` Zelphir Kaltstahl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87lfeeje5r.fsf@kyleam.com \
    --to=kyle@kyleam.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=zelphirkaltstahl@posteo.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).