-
-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathtextile.py
More file actions
26 lines (18 loc) · 656 Bytes
/
textile.py
File metadata and controls
26 lines (18 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from __future__ import annotations
import re
from typing import TYPE_CHECKING
from .base import BaseFormat
if TYPE_CHECKING:
from commitizen.tags import VersionTag
class Textile(BaseFormat):
extension = "textile"
RE_TITLE = re.compile(r"^h(?P<level>\d)\. (?P<title>.*)$")
def parse_version_from_title(self, line: str) -> VersionTag | None:
if not self.RE_TITLE.match(line):
return None
return self.tag_rules.search_version(line)
def parse_title_level(self, line: str) -> int | None:
m = self.RE_TITLE.match(line)
if not m:
return None
return int(m.group("level"))