all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sebastian Rose <sebastian_rose@gmx.de>
To: Water Lin <WaterLin@ymail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: Two question about org-mode?
Date: Thu, 01 Oct 2009 05:55:17 +0200	[thread overview]
Message-ID: <87eipnepju.fsf@gmx.de> (raw)
In-Reply-To: <83bpksx2ub.fsf@ymail.com> (Water Lin's message of "Wed, 30 Sep 2009 16:18:36 +0800")

Water Lin <WaterLin@ymail.com> writes:
> First, I am using item list like this in my org file:
> ----------------
> 1. test
>   1) test
>   2) test
>   3) test
>
> 2. test2
>
> 3. test3
> ----------------
> I don't know why my webpage looks like this after exported:
> ----------------
> 1. test
>   1. test
>   2. test
>   3. test
>
> 2. test2
> ---------------
>
> Why the 1) 2) 3) can't keep the right parenthes in item list order?


Because it's exported as simple XHTML. The list style is not
handmade. If it was, it would look like this:

 1. test
   1. 1) test
   2. 2) test
   3. 3) test


You could use styles:

ol li
{
  list-style-type:upper-roman;
}

li ol li
{
  list-style-type:decimal;
}


Result:


  I. test

     1. test
     2. test
     3. test





> The second question, I have some underline in my org text, like
> -------
> test_src
> -------
>
> When I export it to html page, it is converted to subscript characters.
> How can I make org not to convert the underline?


Quote the underscore with a backslash:

  test\_src



  Sebastian

  reply	other threads:[~2009-10-01  3:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-30  8:18 Two question about org-mode? Water Lin
2009-10-01  3:55 ` Sebastian Rose [this message]
2009-10-01  5:27   ` Bernt Hansen

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

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

  git send-email \
    --in-reply-to=87eipnepju.fsf@gmx.de \
    --to=sebastian_rose@gmx.de \
    --cc=WaterLin@ymail.com \
    --cc=emacs-orgmode@gnu.org \
    /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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.