site/rules.min
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
'min-highlight require :min-highlight 'hastysite import 'min-highlight import () :modules () :posts ;Routing ( symbol set-destination (dict :meta ==> dict :result) ( meta /id :id meta /ext :ext ( ((id "home" ==) ( meta ( ("index" %id) (".html" %ext) ) tap )) ((ext ".md" ==) ( meta ( (".html" %ext) ("$1/index" (id) => % %id) ) tap )) ) case @result ) ) :: ;Processing operators ( symbol process-md-with-template (dict :meta 'sym :tpl ==> dict :result) ( "" :page "" :contents meta ( (input-fread @contents meta) (settings /title %site) (settings /version %version) ( :temp contents temp markdown highlight-codeblocks highlight-codes @contents temp ) (contents %contents) ( ; Save post content (plain HTML fragment, no template) :temp (temp /content-type "post" ==) ; Need to save html fragment separately because contents is overwritten. (temp dup /contents %fragment posts append @posts) when temp ) (:temp tpl temp mustache @page temp) (page %contents) ) tap @result ) ) :: ( symbol process-md-content (dict :meta ==> dict :result) ( meta /content-type :ct meta ct process-md-with-template @result ) ) :: ( symbol process-content (dict :meta ==> dict :result) ( meta /ext :ext meta /id :id meta ( ((".md" ext ==) (process-md-content)) ) case @result ) ) :: ( symbol process-css-asset (dict :meta ==>) ( "" :contents meta ( (input-fread @contents meta) (:temp contents preprocess-css @contents temp) (contents %contents) ) tap output-fwrite ) ) :: ( symbol process-mmm-json (dict :data ==>) ( timestamp :ts data input-fread from-json :contents ; Save modules contents /modules @modules ; Update timestamp contents ts %updated @contents data contents to-json %contents output-fwrite ; Add timesyamp file { "mmm.timestamp" :path "mmm" :id ".timestamp" :ext "asset" :type } ts string %contents output-fwrite ) ) :: ( symbol download-latest-min-exes (==>) ( "Downloading latest min executables..." notice! settings /version :version ("windows" "macosx" "linux") ( :opsys "https://github.com/h3rald/min/releases/download/v$1/min_v$1_$2_x64.zip" (version opsys) =% :remote "min_$#.zip" (opsys) =% :local "wget $# -O $#" (remote local) =% :cmd cmd system "assets/downloads/$#/" (opsys) =% :dir "assets/downloads/" mkdir "unzip $# -o -d $#" (local dir) =% @cmd cmd system! local rm ) foreach ) ) :: ;Main ((('wget "" !=) ('zip which "" !=)) &&) (download-latest-min-exes) when "Processing contents..." notice! contents ( (dict) expect -> :meta ( ((meta /id "^_" match?) ()) ;Ignore files starting with underscore. ((true) (meta process-content set-destination output-fwrite)) ) case ) foreach "Processing assets..." notice! assets ( (dict) expect -> :meta ( ((meta /ext ".css" ==) (meta process-css-asset)) ((meta /path "mmm.json" ==) (meta process-mmm-json)) ((true) (meta output-cp)) ) case ) foreach "Generating mmm index..." notice! ; Process deps of each module -> name@version modules ( :module module /deps dkeys ( :name module /deps name dget :version "$#@$#" (name version) =% ) map ", " join :dependencies (dependencies "" ==) ("n/a" @dependencies) when module dependencies %dependencies ) map @modules {} "mmm/index" %id "mmm.html" %path ".html" %ext "mmm" %title "min language" %site "page" %content-type modules %modules dup "mmm" swap mustache %contents output-fwrite "Generating news page..." notice! ; Get news ;contents ; (:content ((content 'content-type dhas?) (content /content-type "post" ==)) &&) ;filter posts (:a :b a /date b /date >) sort @posts {} "news/index" %id "news.html" %path ".html" %ext "News" %title "min language" %site "page" %content-type posts %posts dup "news" swap mustache %contents output-fwrite {} "rss" %id "rss.xml" %path ".xml" %ext "min programming language" %title "min language" %site "rss" %content-type posts %posts dup "rss" swap mustache %contents output-fwrite |