Questions tagged [restructuredtext]

reStructuredText, often in files with extension .rst, is a markup format used extensively for generating documentation for Linux utilties. Use this tag for questions that specifically address issues with .rst files.

reStructuredText is the mark-up format for the docutils toolset

5 questions
14
votes
1 answer

generate a hyperlinked table of contents and insert into existing PDF

I have an existing PDF (without any corresponding source file), and a text file which is a list of items referencing sections within the PDF file, along with a page number for each item. I would like to generate a new PDF which starts with a…
Adam Spiers
  • 892
  • 7
  • 14
8
votes
4 answers

The best Linux Open-source wiki with native support for Windows (NTLM) authentication

I need to set up a wiki for our engineering group; we are part of an Enterprise-wide Windows Active Directory domain. Most of the corporate IT applications use NTLM to authenticate (automatically via Internet Exploder); while I'm not part of…
3
votes
1 answer

updating rst2pdf leads to pip uninstall

I had some problem generating PDF files from reStructuredText, which I thought I could solve with updating rst2pdf. I got a Permission denied error when I did pip install -U rst2pdf OSError: [Errno 13] Permission denied:…
1
vote
1 answer

Sphinx: Generate one TOC per .rst

I am trying to convert GNU Parallel's (boring) POD-html to Sphinx. I use this index.rst: .. SPDX-FileCopyrightText: 2021 Ole Tange, http://ole.tange.dk and Free Software and Foundation, Inc. .. .. SPDX-License-Identifier: GPL-3.0-or-later .. GNU…
Ole Tange
  • 33,591
  • 31
  • 102
  • 198
1
vote
1 answer

PDF output with correct spaces in code examples

I have been using rst2pdf and pandoc to convert the following reStructuredText into PDF: This is a python example:: def main(): print("Hello World!") if __name__ == '__main__': main() And one for YAML:: server: name:…
Anthon
  • 78,313
  • 42
  • 165
  • 222