diff options
author | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2021-04-23 11:34:59 +0200 |
---|---|---|
committer | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2021-04-23 11:34:59 +0200 |
commit | a9bedcf3355dcaff698fa36b9eb17d442c2ea08a (patch) | |
tree | 5b3012a7f4ee39578e5c265b5243d36ce9734693 /scripts/style_api_gen.py | |
parent | eaed66057bada58f91aa724a2e9edd2d23ac7a97 (diff) | |
download | lvgl-a9bedcf3355dcaff698fa36b9eb17d442c2ea08a.tar.gz lvgl-a9bedcf3355dcaff698fa36b9eb17d442c2ea08a.zip |
minor fixes
Diffstat (limited to 'scripts/style_api_gen.py')
-rwxr-xr-x | scripts/style_api_gen.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/style_api_gen.py b/scripts/style_api_gen.py index 56966d80f..3cf878509 100755 --- a/scripts/style_api_gen.py +++ b/scripts/style_api_gen.py @@ -384,6 +384,8 @@ def local_style_set(p): print("}") print("") + + def docs(p): if "dsc" not in p: return @@ -398,7 +400,9 @@ def docs(p): e = "No" if p["ext_draw"]: e = "Yes" - print("### " + p["name"]) + li_style = "style='display:inline; margin-right: 20px" + + print("<h3>" + p["name"].lower() + "</h3>") print(p["dsc"]) print("<ul>") |