Below is my code

from docutils.core import publish_string
from docutils.writers.html4css1 import Writer as HisWriter

args = {
    'stylesheet' : '/home/wonder/lab/css/note.css',
    'stylesheet-path' : None,
}

src = 'ccav'
print publish_string(src, writer=HisWriter(), settings_overrides=args)

I got the following error:

AssertionError: stylesheet and stylesheet_path are mutually exclusive.

So, I change args to:

args = {
    'stylesheet-path' : '/home/wonder/lab/css/note.css',
    'stylesheet' : None,
}

Now, There is no errors. But, The stylesheet inserted into the HTML output is not the content of /home/wonder/lab/css/note.css. It is still /usr/local/lib/python2.7/dist-packages/docutils/writers/html4css1/html4css1.css.

That is to say, unlike specify options in command line when using publish_cmdline, the settings_overrides argument carrying HTML-Specific Options takes no effect when using publish_string.

link|improve this question
What happens when you set 'stylesheet' : '/home/wonder/lab/css/note.css' and also set `'stylesheet-path' : './' or something like that at the same time – agf Jul 23 '11 at 6:39
Thanks for your suggestion! I have tried。let args={'stylesheet-path' : '/home/wonder/lab/css/note.css','stylesheet' : './',} or args={'stylesheet' : '/home/wonder/lab/css/note.css','stylesheet-path' : './',}。 But in the two situations, I always get the same as before: AssertionError: stylesheet and stylesheet_path are mutually exclusive. – wonder Jul 23 '11 at 8:00
I have found a example use of publish_string click to visit. but it use no HTML-Spec options at all. – wonder Jul 23 '11 at 8:07
Take a look at my answer, it works for me. Also remember to accept an answer by clicking the check mark next to it if it solved your problem. – agf Jul 23 '11 at 8:24
feedback

1 Answer

up vote 1 down vote accepted
from docutils.core import publish_string
from docutils.writers.html4css1 import Writer as HisWriter

src = 'ccav'
args = {
    'stylesheet_path' : '/path/to/your/stylesheet'

}
print publish_string(src, writer=HisWriter(), settings=None, settings_overrides=args)

You need to do settings = None and use stylesheet_path rather than stylesheet to get it to ignore the built in stylesheet.

Edit: Note that I found this answer in the source of one of the example scripts that comes with distutils, so even though settings = None seems bad, it doesn't seem to be.

link|improve this answer
Thank you very much! Your code have solved my problem. It works as I expects. But even you have miss the point! settings=None is unnecessary. Don't You see the Symbol stylesheet_path in the code you pasted, It's stylesheet_path rather than stylesheet-path! – wonder Jul 23 '11 at 13:24
HA! Wow, I didn't notice that at all. Copy-Paste to the rescue! – agf Jul 23 '11 at 13:28
1  
I have to complain that what a bad design it is, How can it use stylesheet-path in settings_spec and cmd line but use a different stylesheet_path in this situation! it has wasted me a great deal of time! And I can find nothing about it in the documentation – wonder Jul 23 '11 at 13:35
It's really about the worst documentation I've ever seen. Just reading the source is much easier. – agf Jul 23 '11 at 13:36
Thank you! could you please give me the link to the source code you refer to? – wonder Jul 23 '11 at 13:43
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.