Lines Matching refs:indent
108 """indent level (in spaces) of the first line of a paragraph."""
111 """indent level of the remaining lines of a paragraph."""
169 def addLine(self, line, indent):
174 self.leadIndent = indent
175 self.hangIndent = indent
180 self.hangIndent = indent
196 """indent level (in spaces) of the first line of a paragraph."""
199 """indent level of the remaining lines of a paragraph."""
303 Paragraphs may have "hanging indent", e.g.
315 indent = len(line) - len(line.lstrip())
318 if self.state.para != [] and indent < self.state.hangIndent:
328 self.state.addLine(line, indent)
422 # hanging indents / bullet-points and track that indent level.