We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bcadb1 commit d7d505eCopy full SHA for d7d505e
mlx/robot2rst/style_checker.py
@@ -122,7 +122,7 @@ def visit_Documentation(self, node):
122
manager = StyleManager(current_file=self.robot_file)
123
124
# Ensure bullet lists are preceded by a blank line
125
- text = re.sub(r'([^\n])\n([-*+]) ', r'\1\n\n\2 ', doc_string)
+ text = re.sub(r'([^\n])\n([ \t]*)([-*+]) ', r'\1\n\n\2\3 ', doc_string)
126
127
doc_node = manager.parse_string(text, line_offset=node.lineno-1)
128
doc_node.settings.tab_width = 4
0 commit comments