Initial release: export 1C Help to Gitea wiki.

Convert Ext/Help/ru.html to Markdown and push to a wiki git repository.
This commit is contained in:
mihailkudravcev
2026-07-23 14:54:04 +03:00
commit aec0407b87
15 changed files with 1339 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
"""export_1c_help version."""
from __future__ import annotations
from pathlib import Path
_VERSION_FILE = Path(__file__).resolve().parent.parent / "VERSION"
def _read_version() -> str:
try:
return _VERSION_FILE.read_text(encoding="utf-8").strip()
except OSError:
return "0.0.0"
__version__ = _read_version()
__status__ = "in development"