improve plugin to fix exactly my template
This commit is contained in:
parent
d7ac72283f
commit
cb289f659b
1 changed files with 15 additions and 4 deletions
|
@ -20,14 +20,25 @@ def generate_from_template(inputname, **options):
|
|||
|
||||
# Prepare Variables
|
||||
rendered_title = f"Ansible Role: {inputname}"
|
||||
rendered_sizes = f"width=\"{int(118+(len(inputname)*6))}\" height=\"20\""
|
||||
orange_box_width = str(int(20+len(inputname)*6))
|
||||
orange_position = str(int(114+(len(inputname)*6)))
|
||||
rendered_sizes = f"width=\"{int(132.5+(int(len(inputname)/2)*10))}\" height=\"20\""
|
||||
orange_box_width = str(int(5+len(inputname)*6))
|
||||
orange_position = str(int(50+(len(inputname)*6)))
|
||||
latest_element_x = str(int(1+(int(len(inputname)/2)*10)-1)-0.007)
|
||||
accent_02_multiplier = str(1+int(len(inputname)/2))
|
||||
|
||||
# Create File
|
||||
file = f"assets/svg/{inputname}.svg"
|
||||
with open(file, 'w', encoding='UTF-8') as outputfile:
|
||||
outputfile.write(env.render_template('galaxy.svg', pad=pad, this={'title': rendered_title, 'name': inputname, "sizes": rendered_sizes, "orange_box_width": orange_box_width, "orange_position": orange_position}))
|
||||
outputfile.write(env.render_template(
|
||||
'galaxy.svg', pad=pad, this={
|
||||
'title': rendered_title,
|
||||
'name': inputname,
|
||||
"sizes": rendered_sizes,
|
||||
"orange_box_width": orange_box_width,
|
||||
"orange_position": orange_position,
|
||||
"accent03_x": latest_element_x,
|
||||
"bg_orange_x": latest_element_x,
|
||||
"accent_02_multiplier": accent_02_multiplier}))
|
||||
returnvalue = f"/svg/{inputname}.svg"
|
||||
return returnvalue
|
||||
|
||||
|
|
Loading…
Reference in a new issue