diff options
Diffstat (limited to 'docs/_ext/lv_example.py')
-rw-r--r-- | docs/_ext/lv_example.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_ext/lv_example.py b/docs/_ext/lv_example.py index 08fcf9f52..d4db6a08c 100644 --- a/docs/_ext/lv_example.py +++ b/docs/_ext/lv_example.py @@ -57,7 +57,7 @@ class LvExample(Directive): env = self.state.document.settings.env iframe_html = "" - + c_path = self.get_example_code_path(example_path, 'c') py_path = self.get_example_code_path(example_path, 'py') @@ -69,7 +69,7 @@ class LvExample(Directive): '<i class="fa fa-play"></i> Simulator': f"https://sim.lvgl.io/v{env.config.version}/micropython/ports/javascript/index.html?script_startup=https://raw.githubusercontent.com/lvgl/lvgl/{env.config.repo_commit_hash}/examples/header.py&script=https://raw.githubusercontent.com/lvgl/lvgl/{env.config.repo_commit_hash}/examples/{example_path}.py" }) - if not 'c' in excluded_languages: + if not 'c' in excluded_languages: if env.app.tags.has('html'): iframe_html = f"<div class='lv-example' data-real-src='/{env.config.version}/_static/built_lv_examples?example={example_name}&w=320&h=240'></div>" |