From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: bullets when exporting a list of checklists Date: Fri, 19 Jul 2013 21:22:44 +0200 Message-ID: <87ip06tkvv.fsf@gmx.us> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49467) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V0GGd-0006aQ-4K for emacs-orgmode@gnu.org; Fri, 19 Jul 2013 15:23:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V0GGb-00084l-I1 for emacs-orgmode@gnu.org; Fri, 19 Jul 2013 15:23:03 -0400 Received: from plane.gmane.org ([80.91.229.3]:58184) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V0GGb-00084B-9l for emacs-orgmode@gnu.org; Fri, 19 Jul 2013 15:23:01 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1V0GGY-00060j-Sl for emacs-orgmode@gnu.org; Fri, 19 Jul 2013 21:22:58 +0200 Received: from e178248204.adsl.alicedsl.de ([85.178.248.204]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 19 Jul 2013 21:22:58 +0200 Received: from rasmus by e178248204.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 19 Jul 2013 21:22:58 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org david@adboyd.com (J. David Boyd) writes: > david@adboyd.com (J. David Boyd) writes: > >> Is there any way to turn off the solid and hollow bullet points when exporting >> a checklist of checklists? >> >> I want to make a checklist for my camping trips, and I don't want the bullet >> points, just the nice clean list. >> >> I've seen some options available for formatting, but nothing seems to control >> the generation of the bullet points. >> >> Any pointers on where to look in the docs or source for controlling this? >> >> Thanks, >> >> Dave in St. Petersburg, FL > > And sorry, I should have said "When exporting to html," looking at M-x apropos-variable org-export-with RET I didn't see anything. But check it out. If nothing works you can add a filter. Here's something to get you started. You could add more robustness-check, e.g. making sure that only the first occurrence is removed etc. (defun me/org-export-remove-checkboxes-from-html (item backend info) "Remove checkboxes from html via regexp. It's inheritantly unstable as it only recognizes checkboxes of the format [something]. Info is ignored" (when (org-export-derived-backend-p backend 'html) (replace-regexp-in-string "\\[.*?\\] ?" "" item))) (add-to-list 'org-export-filter-item-functions 'me/org-export-remove-checkboxes-from-html) –Rasmus -- . . . The proofs are technical in nature and provides no real understanding.