ReStructuredText

RST

About

reStructuredText is a file format for textual data used primarily in the Python programming language community for technical documentation.

Installation

Change enable from False to True in the restructuredtext section (cf module installation).

vscode-anywhere:
    restructuredtext:
        enabled: True
    python3:
        enabled: True

Requirements

This module requires to have the python3 module enabled.

VSCode

VSCode extensions

lextudio.restructuredtext

This extension provides rich reStructuredText language support for Visual Studio Code. Now you write reStructuredText scripts using the excellent IDE-like interface that VS Code provides.

VSCode settings

No settings.

VSCode keybindings

No keybindings.

Software

No software.

Documentation

No documentation.

VSCode-Anywhere

Environment

No environment.

Specific settings

pip

Same pip settings usage as python3.

  • Global:

vscode-anywhere:
  restructuredtext:
    enabled: True
    pip:
      opts:
        global: {}
        install:
          upgrade: False
        update:
          upgrade: True
        uninstall: {}
      pkgs:
        docutils:
          enabled: True
          version: null
          opts:
            install: {}
            update: {}
            uninstall: {}
        sphinx:
          enabled: True
          version: null
          opts:
            install: {}
            update: {}
            uninstall: {}
        sphinx-autobuild:
          enabled: True
          version: null
          opts:
            install: {}
            update: {}
            uninstall: {}
        doc8:
          enabled: True
          version: null
          opts:
            install: {}
            update: {}
            uninstall: {}
  • Windows:

vscode-anywhere:
  restructuredtext:
    enabled: True
    pip:
      opts:
        global:
          bin_env: C:\VSCode-Anywhere\apps\scoop\apps\python\current\Scripts\pip.exe

Assuming you have installed in the default directory C:\VSCode-Anywhere.

  • Linux:

vscode-anywhere:
  restructuredtext:
    enabled: True
    pip:
      opts:
        global:
          bin_env: /home/linuxbrew/.linuxbrew/bin/pip3

Last updated