* Pro/Con Lists
@ 2010-04-08 7:46 Gary .
2010-04-08 11:17 ` Łukasz Stelmach
2010-04-08 12:58 ` Giovanni Ridolfi
0 siblings, 2 replies; 3+ messages in thread
From: Gary . @ 2010-04-08 7:46 UTC (permalink / raw)
To: emacs-orgmode
Is there a decent way to create these using Org Mode? I tried
plain lists, but when exported to HTML the entries lose their '+'
and '-' signs (and gain some kind of bulletpoint).
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Pro/Con Lists
2010-04-08 7:46 Pro/Con Lists Gary .
@ 2010-04-08 11:17 ` Łukasz Stelmach
2010-04-08 12:58 ` Giovanni Ridolfi
1 sibling, 0 replies; 3+ messages in thread
From: Łukasz Stelmach @ 2010-04-08 11:17 UTC (permalink / raw)
To: emacs-orgmode
"Gary ." <emacs-orgmode@garydjones.name> writes:
> Is there a decent way to create these using Org Mode? I tried
> plain lists, but when exported to HTML the entries lose their '+'
> and '-' signs (and gain some kind of bulletpoint).
How about checkboxes? (I havn't tried to export them).
--
Miłego dnia,
Łukasz Stelmach
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Pro/Con Lists
2010-04-08 7:46 Pro/Con Lists Gary .
2010-04-08 11:17 ` Łukasz Stelmach
@ 2010-04-08 12:58 ` Giovanni Ridolfi
1 sibling, 0 replies; 3+ messages in thread
From: Giovanni Ridolfi @ 2010-04-08 12:58 UTC (permalink / raw)
To: Gary .; +Cc: emacs-orgmode
"Gary ." <emacs-orgmode@garydjones.name> writes:
Hi, Gary
> Is there a decent way to create
a PROs/Cons list
> these using Org Mode?
Depends on your level of decency ;-)
* Suggestion 1
+ PROS
+ fast
+ furious
+ CONS
+ rough
+ noisy
* Suggestion 2
+ PROS fast
+ PROS furious
+ CONS rough
+ CONS noisy
You can write a function that writes the words
"PROS" & "CONS" and bind it to a keystroke.
You can also write a function that, in the HTML exported file,
substitutes the words "PROS" & "CONS" with the appropriate class,
e.g.:
(defun gio-red-cons () ""(interactive) () (setq a (point-min))
(while (< a (point-max)) (re-search-forward " PROS" nil nil ) (replace-match "<span class=\"todo TODO\">CONS<\/span>" ) (setq a (point))) )
and use it in the post-export-hook (see the manual)
to have coloured PROS and CONS
HTH
Giovanni
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-04-08 12:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-08 7:46 Pro/Con Lists Gary .
2010-04-08 11:17 ` Łukasz Stelmach
2010-04-08 12:58 ` Giovanni Ridolfi
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).