all repos — min @ fd4591c5b329f219b1db55c52821a14a71b92a7d

A small but practical concatenative programming language.

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
'hastysite import

;Routing
(
  (dict) expect -> :meta
  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
) ^set-destination

; Syntax highlighter
(
  symbol span
  (str :class str :value ==> str :result)
  (
      "<span class=\"min-$#\">$#</span>" (class value) =% @result
  )
) ::

(
  symbol highlight
  (dict :token ==> str :result)
  (
      token /value :value
      token /type :type
      (
          ((type "tkEof" ==) ("" @result))
          ((type "tkSpace" ==) (value @result))
          ((type "tkBlockComment" ==) (type "#|$#|#" (value) =% span @result))
          ((type "tkBlockDocComment" ==) (type "#||$#||#" (value) =% span @result))
          ((type "tkLineComment" ==) (type ";$#" (value) =% span @result))
          ((type "tkLineDocComment" ==) (type ";;$#" (value) =% span @result))
          ((type "tkString" ==) (type "\"$#\"" (value) =% span @result))
          ((true) (type value span @result))
      ) case
  )
) ::

(
  symbol min-block-highlight
  (str :code ==> str :result)
  (
    code tokenize 'highlight map "" join :code
    "<div class='min-codeblock'>$#</div>" (code) =% @result
  )
) ::

(
  symbol min-inline-highlight
  (str :code ==> str :result)
  (
    code tokenize 'highlight map "" join :code
    "<span class='min-code'>$#</span>" (code) =% @result
  )
) ::

(
  symbol highlight-min-codeblocks
  (str :html ==> str :result)
  (
    html "<pre>\s*<code>((?:.|\n)*?)<\/code>\s*<\/pre>" 
    (1 get min-block-highlight) replace-apply @result
  )
) ::

(
  symbol highlight-min-codes
  (str :html ==> str :result)
  (
    html "<code>(.*?)<\/code>" 
    (1 get min-inline-highlight) replace-apply @result
  )
) ::

;Processing operators
(
  ('sym dict) expect -> :tpl :meta
  "" :page
  "" :contents
  meta (
    (input-fread @contents meta)
    (settings /title %site)
    (settings /version %version)
    (
      :temp contents temp markdown 
      highlight-min-codeblocks highlight-min-codes @contents temp
    )
    (contents %contents)
    (:temp tpl temp mustache @page temp)
    (page %contents)
  ) tap
) ^process-md-with-template

(
  (dict) expect -> :meta
  meta /content-type :ct
  meta ct process-md-with-template
) ^process-md-content

(
  (dict) expect -> :meta
  meta /ext :ext
  meta
  (
    ((".md" ext ==) (process-md-content))
  ) case
) ^process-content

(
  (dict) expect -> :meta
  "" :contents
  meta (
    (input-fread @contents meta)
    (:temp contents preprocess-css @contents temp)
    (contents %contents)
  ) tap
  output-fwrite
) ^process-css-asset

(
  "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
) ^download-latest-min-exes

;Main

((('wget "" !=) ('zip which "" !=)) &&)
  (download-latest-min-exes)
when


"Processing contents..." notice!
contents (
  (dict) expect -> 
  dup
  (
    ((/id "^_" match?) ()) ;Ignore files starting with underscore.
    ((true) (process-content set-destination output-fwrite)) 
  ) case
) foreach

"Processing assets..." notice!
assets (
  (dict) expect -> 
  dup
  (
    ((/ext ".css" match?) (process-css-asset))
    ((true) (output-cp))
  ) case
) foreach