mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Documentation generation formatting fix.
This commit is contained in:
parent
708069479c
commit
3166e49292
2 changed files with 5 additions and 5 deletions
|
@ -583,7 +583,7 @@ class LeafNode(object):
|
|||
argname = " / ".join("`{}`".format(x.strip()) for x in argname.replace("|","/").split("/"))
|
||||
out.append(
|
||||
"{0:15s} | {1}".format(
|
||||
"`{0}`".format(argname),
|
||||
mkdn_esc(argname),
|
||||
mkdn_esc(argdesc)
|
||||
)
|
||||
)
|
||||
|
@ -595,7 +595,7 @@ class LeafNode(object):
|
|||
argname = " / ".join("`{}`".format(x.strip()) for x in argname.replace("|","/").split("/"))
|
||||
out.append(
|
||||
"{0:15s} | {1}".format(
|
||||
"`{0}`".format(argname),
|
||||
mkdn_esc(argname),
|
||||
mkdn_esc(argdesc)
|
||||
)
|
||||
)
|
||||
|
@ -609,10 +609,10 @@ class LeafNode(object):
|
|||
out.append("Anchor Name | Description")
|
||||
out.append("--------------- | ------------------------------")
|
||||
for anchorname, anchordesc in self.anchors:
|
||||
anchorname = anchorname.replace(" / ", "` / `")
|
||||
anchorname = " / ".join("`{}`".format(x.strip()) for x in anchorname.replace("|","/").split("/"))
|
||||
out.append(
|
||||
"{0:15s} | {1}".format(
|
||||
"`{0}`".format(anchorname),
|
||||
mkdn_esc(anchorname),
|
||||
mkdn_esc(anchordesc)
|
||||
)
|
||||
)
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,558];
|
||||
BOSL_VERSION = [2,0,559];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue