Add extra backticks to basename and filename to prevent tex recognition

This commit is contained in:
Edward Longman 2024-01-24 15:37:53 +00:00 committed by GitHub
parent 2ff4035c94
commit 08b0c488f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,8 @@ class CustomReport(Optionable):
self.output = 'Custom_report.txt' self.output = 'Custom_report.txt'
""" File name for the custom report """ """ File name for the custom report """
self.content = '' self.content = ''
""" Content for the report. Use `${basename}` for the project name without extension. """ Content for the report. Use ``${basename}`` for the project name without extension.
Use `${filename(LAYER)}` for the file corresponding to LAYER """ Use ``${filename(LAYER)}`` for the file corresponding to LAYER """
class AnyLayerOptions(VariantOptions): class AnyLayerOptions(VariantOptions):