all repos — min @ 16c42f117fec01ad572c646b161025a4a324a063

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
'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)
  (
      "min-$#" (class) =% @class
      {} :attributes
      attributes class %class @attributes
      "span" xelement :sp
      sp attributes %attributes @sp
      value xtext :text
      sp (text) => %children @sp
      sp to-xml @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-highlight
  (str :code ==> str :result)
  (
    code tokenize 'highlight map "" join :code
    "<div class='min-codeblock'>$#</div>" (code) =% @result
  )
) ::

(
  symbol highlight-min-codeblocks
  (str :markdown ==> str :result)
  (
    markdown "```min\n([^`]+)\n```" 
    (1 get min-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 highlight-min-codeblocks temp markdown @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