We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91f8641 commit 1bd5facCopy full SHA for 1bd5fac
src/clay.clj
@@ -11,12 +11,13 @@
11
(mapv str (filter File/.isFile (tree-seq File/.isDirectory File/.listFiles (File. "notebooks"))))
12
"src/index.clj")
13
:title "Advent of Code"
14
- :base-target-path "_site/new/"
+ :base-target-path "_site/new"
15
:hide-ui-header true
16
:show false
17
:live-reload false
18
:post-process (fn [html]
19
- (when-let [title (second (first (re-seq #"<h1.*?>(.*?)</h1>" html)))]
+ (if-let [title (second (first (re-seq #"<h1.*?>(.*?)</h1>" html)))]
20
(.replaceFirst html
21
- "<title>.*?</title>" (str "<title>" title "</title>"))))})
+ "<title>.*?</title>" (str "<title>" title "</title>"))
22
+ html))})
23
(p/stop))
0 commit comments