@@ -191,10 +191,10 @@ FORMAT is a format string to compile with ARGS and display on the REPL."
191
191
" Check whether we're using a compatible nREPL version."
192
192
(if-let* ((nrepl-version (cider--nrepl-version)))
193
193
(when (version< nrepl-version cider-required-nrepl-version)
194
- (cider-emit-manual-warning " troubleshooting/#warning-saying-you-have-to-use-nrepl-0212 "
194
+ (cider-emit-manual-warning " troubleshooting.html#_warning_saying_you_have_to_use_nrepl_0_4_4 "
195
195
" CIDER requires nREPL %s (or newer) to work properly"
196
196
cider-required-nrepl-version))
197
- (cider-emit-manual-warning " troubleshooting/#warning-saying-you-have-to-use-nrepl-0212 "
197
+ (cider-emit-manual-warning " troubleshooting.html#_warning_saying_you_have_to_use_nrepl_0_4_4 "
198
198
" Can't determine nREPL's version.\n Please, update nREPL to %s."
199
199
cider-required-nrepl-version)))
200
200
@@ -203,10 +203,10 @@ FORMAT is a format string to compile with ARGS and display on the REPL."
203
203
" Ensure that we are meeting the minimum supported version of Clojure."
204
204
(if-let* ((clojure-version (cider--clojure-version)))
205
205
(when (version< clojure-version cider-minimum-clojure-version)
206
- (cider-emit-manual-warning " installation/#prerequisites "
206
+ (cider-emit-manual-warning " installation.html#_prerequisites "
207
207
" Clojure version (%s) is not supported (minimum %s). CIDER will not work."
208
208
clojure-version cider-minimum-clojure-version))
209
- (cider-emit-manual-warning " installation/#prerequisites "
209
+ (cider-emit-manual-warning " installation.html#_prerequisites "
210
210
" Can't determine Clojure's version. CIDER requires Clojure %s (or newer)."
211
211
cider-minimum-clojure-version)))
212
212
@@ -220,10 +220,10 @@ message in the REPL area."
220
220
(middleware-version (nrepl-dict-get version-dict " version-string" )))
221
221
(cond
222
222
((null middleware-version)
223
- (cider-emit-manual-warning " troubleshooting/#cider-complains-of-the-cider-nrepl-version "
223
+ (cider-emit-manual-warning " troubleshooting.html#_cider_complains_of_the_cider_nrepl_version "
224
224
" CIDER requires cider-nrepl to be fully functional. Some features will not be available without it!" ))
225
225
((not (string= middleware-version cider-required-middleware-version))
226
- (cider-emit-manual-warning " troubleshooting/#cider-complains-of-the-cider-nrepl-version "
226
+ (cider-emit-manual-warning " troubleshooting.html#_cider_complains_of_the_cider_nrepl_version "
227
227
" CIDER %s requires cider-nrepl %s, but you're currently using cider-nrepl %s. The version mismatch might break some functionality!"
228
228
cider-version cider-required-middleware-version middleware-version)))))
229
229
0 commit comments