f06ae6705e31d8c8b93942a971df33e048d394a5
Gradualisme.md
... | ... | @@ -4,8 +4,6 @@ |
4 | 4 | <img src="media/images/Logo_vectorized_resized.png" style="background-color: transparent;" width = 50 height = 50> |
5 | 5 | </p> |
6 | 6 | |
7 | -# Daily Log, {{page_name}} |
|
8 | - |
|
9 | 7 | |
10 | 8 | Auteur : Errico Malatesta, octobre 1925 |
11 | 9 |
L'association en \"Parti\".md
... | ... | @@ -1,8 +1,5 @@ |
1 | 1 | # L’association en « Parti » et la trajectoire communiste |
2 | 2 | |
3 | ---config |
|
4 | ---h1-title |
|
5 | - |
|
6 | 3 | Brouillon par Crabix |
7 | 4 | |
8 | 5 | Table des matières |
config.ru
... | ... | @@ -1,279 +0,0 @@ |
1 | - # Launch Gollum using a specific git adapter. See https://github.com/gollum/gollum/wiki/Git-adapters |
|
2 | - # Default: rugged |
|
3 | - # |
|
4 | - # Equivalent to --adapter [ADAPTER] |
|
5 | - |
|
6 | - require 'rubygems' |
|
7 | - require 'gollum/app' |
|
8 | - |
|
9 | - module Gollum |
|
10 | - # to require 'my_adapter': |
|
11 | - Gollum::GIT_ADAPTER = "my" |
|
12 | - |
|
13 | - end |
|
14 | - Gollum::TemplateFilter.add_filter('{{current_date}}', & -> () { Time.now.strftime("%Y-%m-%d") }) |
|
15 | - |
|
16 | - |
|
17 | - wiki_options = { |
|
18 | - |
|
19 | - ############################################################################## |
|
20 | - # Command line option equivalents |
|
21 | - |
|
22 | - #----------------------------------------------------------------------------- |
|
23 | - |
|
24 | - #----------------------------------------------------------------------------- |
|
25 | - # Enable file uploads. If set to 'dir', Gollum will store all uploads in the |
|
26 | - # /uploads/ directory in repository root. If set to 'page', Gollum will |
|
27 | - # store each upload at the currently edited page. |
|
28 | - # Default: false |
|
29 | - |
|
30 | - # Equivalent to --allow-uploads dir |
|
31 | - #allow_uploads: true, |
|
32 | - |
|
33 | - # Equivalent to --allow-uploads page |
|
34 | - #allow_uploads: true, |
|
35 | - #per_page_uploads: true, |
|
36 | - |
|
37 | - #----------------------------------------------------------------------------- |
|
38 | - # Set the path to look for static assets. |
|
39 | - # |
|
40 | - # Equivalent to --assets [PATH] |
|
41 | - |
|
42 | - #static_assets_path: [PATH] |
|
43 | - |
|
44 | - #----------------------------------------------------------------------------- |
|
45 | - # Tell Gollum that the git repository should be treated as bare. |
|
46 | - # |
|
47 | - # Equivalent to --bare |
|
48 | - |
|
49 | - #repo_is_bare: true, |
|
50 | - |
|
51 | - #----------------------------------------------------------------------------- |
|
52 | - # Specify the leading portion of all Gollum URLs (path info). Setting this to |
|
53 | - # /wiki will make the wiki accessible under http://localhost:4567/wiki/. |
|
54 | - # Default: / |
|
55 | - # |
|
56 | - # Equivalent to --base-path [PATH] |
|
57 | - |
|
58 | - #base_path: [PATH], |
|
59 | - |
|
60 | - #----------------------------------------------------------------------------- |
|
61 | - # Enable support for annotations using CriticMarkup. |
|
62 | - # |
|
63 | - # Equivalent to --critic-markup |
|
64 | - |
|
65 | - #critic_markup: true, |
|
66 | - |
|
67 | - #----------------------------------------------------------------------------- |
|
68 | - # Tell Gollum to inject custom CSS into each page. Uses custom.css from wiki |
|
69 | - # root |
|
70 | - # |
|
71 | - # Equivalent to --css |
|
72 | - |
|
73 | - #css: true, |
|
74 | - |
|
75 | - #----------------------------------------------------------------------------- |
|
76 | - # Parse and interpret emoji tags (e.g. :heart:) except when the leading colon |
|
77 | - # is backslashed (e.g. \:heart:). |
|
78 | - # |
|
79 | - # Equivalent to --emoji |
|
80 | - |
|
81 | - #emoji: true, |
|
82 | - |
|
83 | - #----------------------------------------------------------------------------- |
|
84 | - # Tell Gollum to use the first <h1> as page title. |
|
85 | - # |
|
86 | - # Equivalent to --h1-title |
|
87 | - |
|
88 | - h1_title: true, |
|
89 | - |
|
90 | - #----------------------------------------------------------------------------- |
|
91 | - # Specify the hostname or IP address to listen on. |
|
92 | - # Default: '0.0.0.0'. |
|
93 | - # |
|
94 | - # Equivalent to --host [HOST] |
|
95 | - |
|
96 | - # ??? |
|
97 | - |
|
98 | - #----------------------------------------------------------------------------- |
|
99 | - # Launch Gollum in "console mode", with a predefined API. |
|
100 | - # |
|
101 | - # Equivalent to --irb |
|
102 | - |
|
103 | - # ??? |
|
104 | - |
|
105 | - #----------------------------------------------------------------------------- |
|
106 | - # Tell Gollum to inject custom JS into each page. Uses custom.js from wiki |
|
107 | - # root. |
|
108 | - # |
|
109 | - # Equivalent to --js |
|
110 | - |
|
111 | - #js: true, |
|
112 | - |
|
113 | - #----------------------------------------------------------------------------- |
|
114 | - # Compatibility with 4.x |
|
115 | - # https://github.com/gollum/gollum/wiki/5.0-release-notes#compatibility-option |
|
116 | - # |
|
117 | - # Internal links resolve case-insensitively, will treat spaces as hyphens, and |
|
118 | - # will match the first page found with a certain filename, anywhere in the |
|
119 | - # repository. Provides compatibility with Gollum 4.x. |
|
120 | - # |
|
121 | - # Equivalent to --lenient-tag-lookup |
|
122 | - |
|
123 | - #hyphened_tag_lookup: true, |
|
124 | - #case_insensitive_tag_lookup: true, |
|
125 | - #global_tag_lookup: true, |
|
126 | - |
|
127 | - #----------------------------------------------------------------------------- |
|
128 | - # Enables MathJax (renders mathematical equations). By default, uses the |
|
129 | - # TeX-AMS-MML_HTMLorMML config with the autoload-all extension.5 |
|
130 | - # |
|
131 | - # Equivalent to --mathjax |
|
132 | - |
|
133 | - #mathjax: true, |
|
134 | - |
|
135 | - #----------------------------------------------------------------------------- |
|
136 | - # Specify path to a custom MathJax configuration. |
|
137 | - # Default: mathjax.config.js file from repository root. |
|
138 | - # |
|
139 | - # Equivalent to --mathjax-config [FILE] |
|
140 | - |
|
141 | - #mathjax_config: [FILE], |
|
142 | - |
|
143 | - #----------------------------------------------------------------------------- |
|
144 | - # Do not render metadata tables in pages. |
|
145 | - # |
|
146 | - # Equivalent to --no-display-metadata |
|
147 | - |
|
148 | - #display_metadata: false, |
|
149 | - |
|
150 | - #----------------------------------------------------------------------------- |
|
151 | - # Disable the feature of editing pages. |
|
152 | - # Default: true |
|
153 | - # |
|
154 | - # Equivalent to --no-edit |
|
155 | - |
|
156 | - #allow_editing: false, |
|
157 | - |
|
158 | - #----------------------------------------------------------------------------- |
|
159 | - # Specify the subdirectory for all pages. If set, Gollum will only serve pages |
|
160 | - # from this directory and its subdirectories. |
|
161 | - # Default: repository root. |
|
162 | - # |
|
163 | - # Equivalent to --page-file-dir [PATH] |
|
164 | - |
|
165 | - #page_file_dir: [PATH], |
|
166 | - |
|
167 | - #----------------------------------------------------------------------------- |
|
168 | - # Follow pages across renames in the History view. |
|
169 | - # Default: true. |
|
170 | - |
|
171 | - # Equivalent to --follow-renames |
|
172 | - #follow_renames: true, |
|
173 | - |
|
174 | - # Equivalent to --no-follow-renames |
|
175 | - #follow_renames: false, |
|
176 | - |
|
177 | - #----------------------------------------------------------------------------- |
|
178 | - # Specify the port to bind Gollum with. |
|
179 | - # Default: 4567. |
|
180 | - # |
|
181 | - # Equivalent to --port [PORT] |
|
182 | - |
|
183 | - # ??? |
|
184 | - |
|
185 | - #----------------------------------------------------------------------------- |
|
186 | - # Specify the git branch to serve. |
|
187 | - # Default: master. |
|
188 | - # |
|
189 | - # Equivalent to --ref [REF] |
|
190 | - |
|
191 | - #ref: [REF], |
|
192 | - |
|
193 | - #----------------------------------------------------------------------------- |
|
194 | - # Use static assets. |
|
195 | - # Defaults to false in development/test, true in |
|
196 | - # production/staging. |
|
197 | - |
|
198 | - # Equivalent to --static |
|
199 | - #static: true, |
|
200 | - |
|
201 | - # Equivalent to --no-static |
|
202 | - #static: false, |
|
203 | - |
|
204 | - #----------------------------------------------------------------------------- |
|
205 | - # Specify custom mustache template directory. |
|
206 | - # |
|
207 | - # Equivalent to --template-dir [PATH] |
|
208 | - |
|
209 | - #template_dir: [PATH], |
|
210 | - |
|
211 | - #----------------------------------------------------------------------------- |
|
212 | - # Use _Template in root as a template for new pages. Must be committed. |
|
213 | - # |
|
214 | - # Equivalent to --template-page |
|
215 | - |
|
216 | - #template_page: true, |
|
217 | - |
|
218 | - #----------------------------------------------------------------------------- |
|
219 | - # Tell Gollum to use specific user icons for history view. Can be set to |
|
220 | - # gravatar, identicon or none. |
|
221 | - # Default: none. |
|
222 | - # |
|
223 | - # Equivalent to --user-icons [MODE] |
|
224 | - |
|
225 | - #user_icons: [MODE], |
|
226 | - |
|
227 | - ############################################################################## |
|
228 | - # Metadata (front matter) |
|
229 | - |
|
230 | - #----------------------------------------------------------------------------- |
|
231 | - # Header counting |
|
232 | - # Default: false |
|
233 | - # Can also be a pre-defined counter. See |
|
234 | - # https://www.w3.org/TR/css-counter-styles-3/#predefined-counters |
|
235 | - |
|
236 | - #header_enum: false, |
|
237 | - #header_enum: 'decimal-leading-zero', |
|
238 | - |
|
239 | - #----------------------------------------------------------------------------- |
|
240 | - # Global metadata. Arbitrary metadata that will be applied to each page. |
|
241 | - |
|
242 | - #metadata: { |
|
243 | - # monkeyboys: 'are loose in the facility' |
|
244 | - #}, |
|
245 | - |
|
246 | - ############################################################################## |
|
247 | - # Tips |
|
248 | - |
|
249 | - #----------------------------------------------------------------------------- |
|
250 | - # Force table of contents tag ([[_TOC_]]) into each page. |
|
251 | - # ??? How to set the level in the configuration file? |
|
252 | - # https://github.com/gollum/gollum/wiki#table-of-contents-toc-tag |
|
253 | - # Default: false |
|
254 | - |
|
255 | - #universal_toc: false, |
|
256 | - |
|
257 | - #----------------------------------------------------------------------------- |
|
258 | - # Move the sidebar to the left of the page |
|
259 | - # https://github.com/gollum/gollum/issues/1450#issuecomment-599124384 |
|
260 | - |
|
261 | - #sidebar: :left, |
|
262 | - |
|
263 | - #----------------------------------------------------------------------------- |
|
264 | - # Change the home page name |
|
265 | - # https://github.com/gollum/gollum/issues/1569#issuecomment-633033895 |
|
266 | - |
|
267 | - #index_page: 'index', |
|
268 | - |
|
269 | - #----------------------------------------------------------------------------- |
|
270 | - # Change the number of changes in the rss feed |
|
271 | - |
|
272 | - #pagination_count: 15 |
|
273 | - } |
|
274 | - |
|
275 | - #------------------------------------------------------------------------------- |
|
276 | - # Change default markup |
|
277 | - #Precious::App.set(:default_markup, :asciidoc) |
|
278 | - |
|
279 | - Precious::App.set(:wiki_options, wiki_options) |