import argparse from pathlib import Path import mistletoe # ãã¡ã¤ã«ã®èªã¿è¾¼ã¿ def read_file(file_path:str) -> str: with open(file_path, "r", encoding="utf-8") as input_file: return input_file.read() # ãã¡ã¤ã«ã¸æ¸ãåºã def write_file(file_path:str, html_str:str) -> None: with open(file_path, "w", encoding="utf-8") as output_file: output_file.write(html_str) # body ã¿ã°ã®ä¸èº«ã«å¤æãã def get_body(md_str:str) -> dict: mark

{{#tags}}- {{label}}
{{/tags}}