From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: thorne Newsgroups: gmane.emacs.help Subject: Re: Is there a mod-emacs? Date: Mon, 07 Jan 2008 14:29:45 -0700 Organization: impossible. Message-ID: <86tzlpxr1y.fsf@timbral.net> References: <4870e7ae-ab72-4d0b-8d42-9a4ed0a54e8d@e23g2000prf.googlegroups.com> <87hchpv2ei.fsf@W0053328.mgh.harvard.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1199742035 11912 80.91.229.12 (7 Jan 2008 21:40:35 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 7 Jan 2008 21:40:35 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 07 22:40:56 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JBziI-0003UR-Iq for geh-help-gnu-emacs@m.gmane.org; Mon, 07 Jan 2008 22:40:54 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JBzhv-0006JC-CC for geh-help-gnu-emacs@m.gmane.org; Mon, 07 Jan 2008 16:40:31 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news-fra1.dfn.de!feeder.erje.net!aioe.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 33 Original-NNTP-Posting-Host: tHL7Pw00KvzSeEbptdOqCQ.user.aioe.org Original-X-Complaints-To: abuse@aioe.org X-Face: $+hwK%|BKl5SJ6w3SIAu?zV.l|8K(ke+y^T<, o5o+}%Hn~dXV{x9iglTN#CjLY{y5#]E`]GFmxlRI>Adx List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:50563 Archived-At: jadamson@partners.org (Joel J. Adamson) writes: > Good idea: this would be a great way to keep up my schedule without > ferrying my org files from machine to machine. However... > > Did you get real checkboxes on org export to html? I've been > considering trying to patch the code to do that. My currently loaded > version of org-mode produces just "- [ ]" instead of an html checkbox. > Is there any discussion of changing the behavior? Actually a generalized html generation library (or xml) might be a nice thing for Emacs (maybe it already has one...?). I am not sure about Org mode, but i am pretty sure Emacs Muse uses regexp substitution on a buffer to generate html--which is great (i use Muse for my web page) but it might also be nice to have something like Common Lisp's lml2 for creating html from lisp code. I hacked up the beginning of something for my own use using Common Lisp macros once and it wasn't that hard to do. The syntax ended up something like: (html (head (title "Foo")) (body (h1 "Snee") (p "This is a paragraph, etc...") (p "So's this!"))) Of course you need to handle xml attributes and a few things like that.... Though now that i write this, it occurs to me that there has to be something like this already around somewhere. -- Theron TtlÄx