mirror of
https://github.com/wez/wezterm.git
synced 2024-11-13 07:22:52 +03:00
41 lines
1.0 KiB
Python
41 lines
1.0 KiB
Python
import json
|
|
|
|
# https://mkdocs-macros-plugin.readthedocs.io/en/latest/macros/
|
|
def define_env(env):
|
|
with open("docs/releases.json") as f:
|
|
for (k, v) in json.load(f).items():
|
|
env.variables[k] = v
|
|
|
|
|
|
@env.macro
|
|
def since(vers, outline=False, inline=False):
|
|
if vers == "nightly":
|
|
first_line = "*Since: Nightly Builds Only*"
|
|
expanded = "+"
|
|
blurb = """
|
|
The feature described in this section requires a nightly build of wezterm.
|
|
You can obtain a nightly build by following the instructions from the
|
|
[Download](/wezterm/installation.html) section.
|
|
"""
|
|
else:
|
|
first_line = f"*Since: Version {vers}*"
|
|
expanded = ""
|
|
blurb = f"""
|
|
*The feature described in this section requires version {vers} of wezterm,
|
|
or a more recent version.*
|
|
"""
|
|
|
|
if outline:
|
|
return f"""
|
|
!!! info "{first_line}"
|
|
{blurb}
|
|
"""
|
|
|
|
if inline:
|
|
return f"({first_line})"
|
|
|
|
return f"""
|
|
???{expanded} info "{first_line}"
|
|
{blurb}
|
|
"""
|