Post

ReText

ReText


ReText est un éditeur simple mais puissant pour les langages de balisage Markdown et reStructuredText.

ReText/Archlinux

Installation

Retext est disponible dans les dépôts

1
yay -S retext python-pyqt6-webengine

python-pyqt6-webengine : moteur de prévisualisation plus puissant avec prise en charge de JavaScript

Alternative : Installation via python pip

Configuration

La configuration est dans le dossier utilisateur $HOME/.config/ReText\ project/ et contient 3 fichiers

  1. ReText.conf : Fichier de configuration de base
  2. retext.qss : Pour la configuration graphique de l’éditeur
  3. markdown-taupe.css : Thème de la prévisualisation

ReText.conf

1
2
3
4
5
6
[General]
appStyleSheet=/home/yann/.config/ReText project/retext.qss
recentFileList=
styleSheet=/home/yann/.config/ReText project/markdown-taupe.css
useWebEngine=true
useWebKit=true

retext.qss

1
2
3
4
QTextEdit {
  color: black;
  background-color: white;
}

markdown-taupe.css

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  color: #f6e6cc;
  width: 700px;
  margin: auto;
  background: #27221a;
  position: relative;
  padding: 0 30px;
}
body>:first-child
{
  margin-top:0!important;
}
img {
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  background-color: rgba(0, 0, 0, 0.3);
}
table, th, td {
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.4em;
  -moz-border-radius: 0.4em;
  -webkit-border-radius: 0.4em;
}
tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.3);
}
p, ul, ol, dl, table, pre {
  margin-bottom: 1em;
}
ul {
  margin-left: 20px;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #ba832c;
  font-weight: bold;
}
a:focus {
  outline: 1px dotted;
}
a:visited {}
a:hover, a:focus {
  color: #d3a459;
  text-decoration: none;
}
a *, button * {
  cursor: pointer;
}
hr {
  display: none;
}
small {
  font-size: 90%;
}
input, select, button, textarea, option {
  font-family: Arial, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  font-size: 100%;
}
button, label, select, option, input[type=submit] {
  cursor: pointer;
}
sup {
  font-size: 80%;
  line-height: 1;
  vertical-align: super;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: Baskerville, "Goudy Old Style", "Palatino", "Book Antiqua", serif;
}
h1 {
  font-size: 24pt;
  margin: 1em 0 0.1em;
}
h2 {
  font-size: 22pt;
}
h3 {
  font-size: 20pt;
}
h4 {
  font-size: 18pt;
}
h5 {
  font-size: 16pt;
}
h6 {
  font-size: 14pt;
}
h1 a, h1 a:hover {
  color: #d7af72;
  font-weight: normal;
  text-decoration: none;
}
::selection {
  background: #745626;
}
::-moz-selection {
  background: #745626;
}
pre {
  background: #1B1812;
  color: #fff;
  padding: 8px 10px;
  overflow-x: hidden;
}
pre code {
  font-size: 10pt;
}

Configurations (en)

ReText stores all of its configuration in a text file: ~/.config/ReText project/ReText.conf.
See the possible configuration options

You can change

  • the theme of the window, using Qt stylesheets.
    Add appStyleSheet=/home/YOUR_USERNAME/.config/ReText project/YOUR_FILE.qss to the configuration file

    Example (retext.qss):

    1
    2
    3
    4
    
    QTextEdit {
      color: black;
      background-color: white;
    }
    
  • the color scheme of the text editor, using a [ColorScheme] section in the configuration file

    Example (ReText.conf):

    1
    2
    3
    4
    
    [ColorScheme]
    htmlTags=green
    htmlSymbols=#ff8800
    htmlComments=#abc
    
  • the color scheme of the preview, using CSS.
    Add styleSheet=/home/YOUR_USERNAME/.config/ReText project/YOUR_FILE.css
    and useWebKit=true to the configuration file

    Example (preview.css):

    1
    2
    3
    4
    
    body {
      color: black;
      background-color: white;
    }
    

Of course, don’t forget to put the files in that directory, then restart ReText to see the changes.

Configuration Options (en)

ReText stores all of its configuration in a text file. A path to that file is printed to stdout during ReText startup.

Configuration options that you can set to improve your experience:

option name type description
appStyleSheet file path file containing a Qt stylesheet file
autoSave boolean whether to automatically save documents (default: false)
defaultCodec string name of encoding to use by default (default: use system encoding)
defaultMarkup string name of markup to use for unknown files
detectEncoding boolean whether to automatically detect files encoding; needs chardet package (default: true)
documentStatsEnabled boolean whether to show document stats (word count, character count) (default: false)
editorFont string font to use for editor: name (default: monospace)
editorFontSize integer font to use for editor: font size
font string font to use for previews: name
fontSize integer font to use for previews: font size
handleWebLinks boolean whether to use ReText preview area to open external links (default: false)
hideToolBar boolean whether to hide the toolbars from the UI (default: false)
highlightCurrentLine boolean whether to highlight current line in editor (default: false)
iconTheme string name of the system icon theme to use (see below)
lineNumbersEnabled boolean whether to show column with line numbers in editor (default: false)
livePreviewByDefault boolean whether new tabs and windows should open in live preview mode (default: false)
markdownDefaultFileExtension string default file extension for Markdown files (default: .mkd)
openLastFilesOnStartup boolean whether to automatically open last documents on startup (default: false)
paperSize string name of default page size to use for print and export (e.g. A4, Letter)
pygmentsStyle string name of Pygments syntax highlighting style to use (default: default)
relativeLineNumbers boolean whether to show line numbers as relative from the current line (default: false)
restDefaultFileExtension string default file extension for reStructuredText files (default: .rst)
rightMargin integer enable drawing of vertical line on defined position (or 0 to disable)
saveWindowGeometry boolean whether to restore window geometry from previous session (default: false)
spellCheck boolean whether to enable spell checking
spellCheckLocale string short name of spell check locale to use (examples: en_US, ru, pt_BR)
styleSheet file path CSS file to use in preview area
syncScroll boolean whether to enable synchronized scrolling for Markdown (default: true)
tabBarAutoHide boolean whether to hide the tabs bar when only one tab is open (default: false)
tabInsertsSpaces boolean whether Tab key should insert spaces instead of tabs (default: true)
tabWidth integer the width of tab character (default: 4)
uiLanguage string short name of locale to use for interface (examples: en_US, ru, pt_BR)
useFakeVim boolean whether to use the FakeVim editor, if available (default: false)
useWebEngine boolean whether to use the WebEngine (Chromium) as HTML previewer (default: false)
useWebKit boolean whether to use the WebKit instead of QTextEdit as HTML previewer (default: false)

If the type is ‘file path’, then the value should be an absolute path to a file.

These options can be set internally by ReText and should never be set manually: recentFileList, lastFileList, lastTabIndex and windowGeometry.

Icon themes

If ReText starts and does not show icons, go to Preferences dialog and fill the “icon theme” field with the icon theme being used.

By default Qt (the toolkit used by ReText) can correctly detect icon theme only on KDE and on a fixed list of Gtk+-based environments (when the gtk platformtheme is used).

If you don’t know name of your icon theme, look at the names of subdirectories in /usr/share/icons/ directory.

Color scheme setting

It is possible to configure ReText highlighter to use custom colors set, by providing these colors in a separate section in the configuration file.

The example of such section is:

1
2
3
4
[ColorScheme]
htmlTags=green
htmlSymbols=#ff8800
htmlComments=#abc

Color names for the text editor:

color name main setting description
marginLine rightMargin the vertical right margin line
currentLineHighlight highlightCurrentLine highlighting of the text line being edited
infoArea   the info box in the bottom-right corner
lineNumberArea lineNumbersEnabled the line numbers area background
lineNumberAreaText lineNumbersEnabled the line numbers area foreground

Color names for the highlighter:

color name description
htmlTags HTML tags, e.g. <foo>
htmlStrings string properties inside HTML tags, e.g. "baz" inside <foo bar="baz">
htmlSymbols HTML symbols, e.g. &bar;
htmlComments HTML comments, e.g. <!-- comment -->
markdownLinks Markdown links and images text, e.g. foo inside [foo](http://example.com)
blockquotes blockquotes, e.g. > quote in Markdown
codeSpans code spans, e.g. `code` in Markdown
restDirectives reStructuredText directives, e.g. .. math::
restRoles reStructuredText roles, e.g. :math:
whitespaceOnEnd whitespace at line endings

Prebuild Color Schemes (en)

Theme CSS QSS Conf Preview Source
Default retext-project
Github EndangeredMassa
QDarkStyle snailhome
Monokai geekthis
Monokai Minimal geekthis
Solarized geekthis
Solarized Light geekthis
Breeze Dark cognifloyd
Markdown Taupe jasonm23
Houdini shotgunsoftware
Markdown elclanrs
Cet article est sous licence CC BY 4.0 par l'auteur.