Merge branch 'blender-v4.1-release'

This commit is contained in:
Campbell Barton 2024-02-09 16:46:35 +11:00
commit 2ec7ab066f
1 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,8 @@ from typing import (
def man_format(data: str) -> str:
data = data.replace("-", "\\-")
data = data.replace("\t", " ")
# Single quotes prevent text rendering when found at the beginning of lines.
data = data.replace("'", "\\(aq")
return data