You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@opoudjis We'd like to use the new feature provided by (the resolution to) #452. Please create a new metanorma release when you see fit. Thank you. Here is the change log:
changelog
Added new output filename templating system:
Uses Liquid template engine for generating output filenames. All output artifacts will follow this template as the base name.
Output filename template can be specified via options[:output_filename_template]
@opoudjis We'd like to use the new feature provided by (the resolution to) #452. Please create a new metanorma release when you see fit. Thank you. Here is the change log:
changelog
options[:output_filename_template]
{{ document.docidentifier | downcase | replace: '/' , '-' | replace: ' ' , '-' }}
document
object:document.docidentifier
: Document identifierdocument.title
: Document titledocument.date
: Document datedocument.language
: Document languagedocument.script
: Document scriptdocument.version
: Document versiondocument.publisher
: Document publisher{{ document.docidentifier }}_{{ document.version }}
{{ document.docidentifier | downcase }}_{{ document.language }}
{% if document.doctype == 'international-standard' %}iso-{% endif %}{{ document.docnumber }}
The text was updated successfully, but these errors were encountered: