mirror of
https://github.com/wez/wezterm.git
synced 2024-11-09 22:15:15 +03:00
docs: remove screenshot width/height calc
It seems "off" in the latest round of updates.
This commit is contained in:
parent
dbcc0cb22a
commit
e35a59132f
@ -55,17 +55,6 @@ class Gen(object):
|
|||||||
idx.write(f" - [{page.title}]({page.title}.md)\n")
|
idx.write(f" - [{page.title}]({page.title}.md)\n")
|
||||||
|
|
||||||
|
|
||||||
def image_dimensions(filename):
|
|
||||||
try:
|
|
||||||
out = subprocess.check_output(["identify", filename])
|
|
||||||
fields = out.split()
|
|
||||||
while fields[0] != b"PNG":
|
|
||||||
fields = fields[1:]
|
|
||||||
return [int(x) for x in fields[1].split(b"x")]
|
|
||||||
except FileNotFoundError:
|
|
||||||
return [100, 100]
|
|
||||||
|
|
||||||
|
|
||||||
class GenColorScheme(object):
|
class GenColorScheme(object):
|
||||||
def __init__(self, title, dirname, index=None):
|
def __init__(self, title, dirname, index=None):
|
||||||
self.title = title
|
self.title = title
|
||||||
@ -86,12 +75,11 @@ class GenColorScheme(object):
|
|||||||
with open(scheme_filename, "w") as idx:
|
with open(scheme_filename, "w") as idx:
|
||||||
images = sorted(glob.glob(f"{scheme_prefix}/*.png"))
|
images = sorted(glob.glob(f"{scheme_prefix}/*.png"))
|
||||||
for img in images:
|
for img in images:
|
||||||
width, height = image_dimensions(img)
|
|
||||||
img = os.path.basename(img)
|
img = os.path.basename(img)
|
||||||
title = os.path.basename(img).rsplit(".", 1)[0]
|
title = os.path.basename(img).rsplit(".", 1)[0]
|
||||||
idx.write(f"# {title}\n")
|
idx.write(f"# {title}\n")
|
||||||
idx.write(
|
idx.write(
|
||||||
f'<img width="{width}" height="{height}" src="{img}" alt="{title}">\n\n'
|
f'<img src="{img}" alt="{title}">\n\n'
|
||||||
)
|
)
|
||||||
idx.write("To use this scheme, add this to your config:\n")
|
idx.write("To use this scheme, add this to your config:\n")
|
||||||
idx.write(
|
idx.write(
|
||||||
|
Loading…
Reference in New Issue
Block a user