Commit 0c76fb48abeac9cbde28ec4243d16497e7733c6f

Warn about unresolved references
Author: xaizek
Author date (UTC): 2023-07-01 15:13
Committer name: xaizek
Committer date (UTC): 2023-07-01 15:13
Parent(s): 7a430b3e03b05ebcc1c6448a1051b1150c57b126
Signing key: 99DC5E4DB05F6BE2
Tree: 03ee4188481d31e170e1951ec9d548baaf9b8272
File Lines added Lines deleted
vimd2h.py 3 0
File vimd2h.py changed (mode: 100755) (index 23246df..fe7dc7e)
... ... class VimDoc2HTML(object):
99 99 if css_class == 'l': return links.link_pipe if css_class == 'l': return links.link_pipe
100 100 else: return links.link_plain else: return links.link_plain
101 101 elif css_class is not None: elif css_class is not None:
102 if css_class == 'l':
103 print('Unresolved reference: |%s|' % tag)
104
102 105 return '<span class="' + css_class + '">' + html_escape[tag] + \ return '<span class="' + css_class + '">' + html_escape[tag] + \
103 106 '</span>' '</span>'
104 107 else: return html_escape[tag] else: return html_escape[tag]
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vimdoc2html

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vimdoc2html

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master