File size: 1,723 Bytes
383be8d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{#-
  This file was automatically generated - do not edit
-#}
{% if config.theme.icon.admonition %}
  {% set _ = namespace(style = "\u003cstyle\u003e:root{") %}
  {% for type, icon in config.theme.icon.admonition | items %}
    {% if type and icon %}
      {% import ".icons/" ~ icon ~ ".svg" as icon %}
      {% set _.style = _.style ~
        "--md-admonition-icon--" ~ type ~ ":" ~
        "url('data:image/svg+xml;charset=utf-8," ~
          icon | replace("\n", "") | urlencode ~
        "');"
      %}
    {% endif %}
  {% endfor %}
  {% set _.style = _.style ~ "}\u003c/style\u003e" %}
  {{ _.style }}
{% endif %}
{% if config.theme.icon.annotation %}
  {% set _ = namespace(style = "\u003cstyle\u003e:root{") %}
  {% import ".icons/" ~ config.theme.icon.annotation ~ ".svg" as icon %}
  {% set _.style = _.style ~
    "--md-annotation-icon:" ~
    "url('data:image/svg+xml;charset=utf-8," ~
      icon | replace("\n", "") | urlencode ~
    "');"
  %}
  {% set _.style = _.style ~ "}\u003c/style\u003e" %}
  {{ _.style }}
{% endif %}
{% if config.theme.icon.tag %}
  {% set _ = namespace(style = "\u003cstyle\u003e:root{") %}
  {% for type, icon in config.theme.icon.tag | items %}
    {% if type and icon %}
      {% import ".icons/" ~ icon ~ ".svg" as icon %}
      {% if type != "default" %}
        {% set modifier = ".md-tag--" ~ type %}
      {% endif %}
      {% set _.style = _.style ~
        ".md-tag" ~ modifier ~ "{" ~
          "--md-tag-icon:" ~
          "url('data:image/svg+xml;charset=utf-8," ~
            icon | replace("\n", "") | urlencode ~
          "');" ~
        "}"
      %}
    {% endif %}
  {% endfor %}
  {% set _.style = _.style ~ "}\u003c/style\u003e" %}
  {{ _.style }}
{% endif %}