[sphinx-users] Re: Configuring Sphinx to use MyST?

2023-07-31 Thread Bob DuCharme
heckboxes=False, suppress_warnings=[], highlight_code_blocks=True) > building [mo]: targets for 0 po files that are out of date > writing output... > building [html]: targets for 0 source files that are out of date > updating environment: 0 added, 0 changed, 0 removed > reading sources

[sphinx-users] Configuring Sphinx to use MyST?

2023-06-30 Thread Bob DuCharme
I have installed sphinx and can run sphinx-build fine, and I have installed MyST and can run myst-docutils-demo fine. When I add 'myst_parser' to the Sphinx conf.py extensions list, though, sphinx-build gives me "Could not import extension myst_parser (exception: No module named 'myst_parser')."

[sphinx-users] Using MyST and trying to link from an .rst file to an .md file

2022-10-06 Thread Bob DuCharme
I have been using MyST to combine markdown files with Sphinx files, and so far it's going well, except that while trying to link from index.rst to file2.md I can't figure out what syntax to put in index.rst. Working from examples in the first tab in https://docs.readthedocs.io/en/stable/guides

Re: [sphinx-users] Re: Removing "Powered by Sphinx" from HTML footer

2021-01-16 Thread Bob DuCharme
Yeah, that's how I eventually figured it out. Thanks, Bob On Fri, Jan 15, 2021 at 4:54 AM Stefano David wrote: > Hi Bob, > > On Thu, 14 Jan 2021 13:30:50 -0500, Bob DuCharme wrote: > > > Thanks for the quick response! That didn't work when I put it in > >

Re: [sphinx-users] Re: Removing "Powered by Sphinx" from HTML footer

2021-01-14 Thread Bob DuCharme
gt; On Thu, 14 Jan 2021 09:46:26 -0800, Bob DuCharme wrote: > > > https://pythonhosted.org/CodeChat/CodeChat/template/conf.py.html shows > > us that setting html_show_sphinx to True adds "Created using Sphinx" to > > the HTML footer and setting it to False removes it.

[sphinx-users] Removing "Powered by Sphinx" from HTML footer

2021-01-14 Thread Bob DuCharme
https://pythonhosted.org/CodeChat/CodeChat/template/conf.py.html shows us that setting html_show_sphinx to True adds "Created using Sphinx" to the HTML footer and setting it to False removes it. That page's HTML footer includes "Powered by Sphinx 1.4", and html_show_sphinx doesn't seem to turn

Re: [sphinx-users] literal percent sign in literal text

2019-12-17 Thread Bob DuCharme
them as python, please > configure "highlight_language = 'none'" in your conf.py. > see > https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-highlight_language > > > Thanks, > Takeshi KOMIYA > > 2019年12月17日(火) 5:24 Bob DuCha

[sphinx-users] Re: literal percent sign in literal text

2019-12-17 Thread Bob DuCharme
Hi Bob, > > On Monday, 16 December 2019 21:24:35 UTC+1, Bob DuCharme wrote: >> >> When I have a percent sign in literal text it italicizes the character >> after it and they both are shown in a lighter color. For example: >> >> >> :: >> >>

[sphinx-users] literal percent sign in literal text

2019-12-16 Thread Bob DuCharme
When I have a percent sign in literal text it italicizes the character after it and they both are shown in a lighter color. For example: :: here is text '%sample' In the HTML rendered by Sphinx, the 's' above will be italicized and the '%s' show up in a lighter color. Backslash doesn

[sphinx-users] Re: moving the "quick search" field above the table of contents in the sidebar

2019-09-13 Thread Bob DuCharme
have the search box where I want it. Thanks, Bob On Friday, September 13, 2019 at 2:49:24 AM UTC-4, Stefano David wrote: > > Hello Bob, > > On Thursday, 12 September 2019 15:56:46 UTC+2, Bob DuCharme wrote: >> >> >> I wondered if I was even trying to override the ri

[sphinx-users] moving the "quick search" field above the table of contents in the sidebar

2019-09-12 Thread Bob DuCharme
Can someone tell me how to move the "quick search" field from underneath the table of contents in the sidebar to above the table of contents? Here's what I tried: in my conf.py I have templates_path = [`_templates`]. I copied sphinx/themes/basic/layout.html into source/_templates, and when I ad

[sphinx-users] Re: difficulty installing a theme

2018-12-17 Thread Bob DuCharme
e themedir/graphite directory to my $PYTHONPATH and then it worked. Thanks, Bob On Friday, December 14, 2018 at 12:38:35 PM UTC-5, Bob DuCharme wrote: > > I am trying to install https://github.com/Cartroo/sphinx-theme-graphite > using Sphinx 1.8.2. (The theme is almost 6 years old, so

[sphinx-users] Re: resizing an image without turning it into a link?

2018-12-14 Thread Bob DuCharme
Thanks! I think that ..figure:: images are not links whether you have a :figwidth: set or not, so it would be nice to have the same control over making them be links to the full-sized image or not. Bob On Friday, December 14, 2018 at 11:55:28 AM UTC-5, Bob DuCharme wrote: > > If I

[sphinx-users] difficulty installing a theme

2018-12-14 Thread Bob DuCharme
I am trying to install https://github.com/Cartroo/sphinx-theme-graphite using Sphinx 1.8.2. (The theme is almost 6 years old, so maybe it's build around an older version of Sphinx.) I have these two lines in my conf.py, html_theme = 'graphite' html_theme_path = ["/full/path/to/themedir/s

[sphinx-users] resizing an image without turning it into a link?

2018-12-14 Thread Bob DuCharme
If I add a :width: option to an image to resize it, the resized one becomes a link to a display of the image in its original size. Sometimes I want this, but sometimes I don't. Is there a way to control that? Thanks, Bob -- You received this message because you are subscribed to the Google

[sphinx-users] using :doc: to link to a document in another directory

2016-01-14 Thread bob . ducharme
The :doc: section of http://www.sphinx-doc.org/en/stable/markup/inline.html#referencing-downloadable-files gives me the impression that I can link to documents that aren't in the same directory as the directory with the link, because it gives /people and ../people as link target examples, but