Changeset 99c6449 in rtems-central for rtemsqual/glossary.py
- Timestamp:
- May 9, 2020, 3:45:46 PM (10 months ago)
- Branches:
- master
- Children:
- 0ee8226
- Parents:
- 2f39499
- git-author:
- Sebastian Huber <sebastian.huber@…> (05/09/20 15:45:46)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (05/28/20 08:38:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rtemsqual/glossary.py
r2f39499 r99c6449 54 54 content.add(".. glossary::") 55 55 with content.indent(): 56 content.append(":sorted:") 57 for item in sorted(terms.values(), 58 key=lambda x: x["glossary-term"].lower()): 59 content.register_license_and_copyrights_of_item(item) 60 with content.indent(): 56 content.add(":sorted:") 57 for item in sorted(terms.values(), 58 key=lambda x: x["glossary-term"].lower()): 59 content.register_license_and_copyrights_of_item(item) 61 60 text = SphinxMapper(item).substitute(item["text"]) 62 61 content.add_definition_item(item["glossary-term"], text)
Note: See TracChangeset
for help on using the changeset viewer.