26 lines
619 B
Python
26 lines
619 B
Python
import re
|
|
import jinja2
|
|
|
|
|
|
def deduplicate_list(l):
|
|
out = []
|
|
for i in l:
|
|
if i not in out:
|
|
out.append(i)
|
|
return out
|
|
|
|
|
|
def parse_vue_template(path):
|
|
with open(path) as f:
|
|
vue = f.read()
|
|
match = re.search(r'<template>[\s\S]+</template>', vue, re.MULTILINE)
|
|
template = match.group(0)
|
|
return template
|
|
|
|
|
|
def write_to_file(template, destination, **kwargs):
|
|
env = jinja2.Environment(loader=jinja2.FileSystemLoader("./"))
|
|
template = env.get_template(template)
|
|
rendered = template.render(**kwargs)
|
|
with open(destination, "w") as f:
|
|
f.write(rendered)
|