mirror of https://github.com/CGAL/cgal
doc postprocessing bug fix: update <title></title> of concept classes
This commit is contained in:
parent
4300adcfb0
commit
553547c8eb
|
|
@ -46,6 +46,8 @@ def conceptify(d):
|
||||||
# fix the title
|
# fix the title
|
||||||
title = d(".title")
|
title = d(".title")
|
||||||
title.html(re.sub("((Class)|(Struct))( Template)? Reference", "Concept Reference", title.html()))
|
title.html(re.sub("((Class)|(Struct))( Template)? Reference", "Concept Reference", title.html()))
|
||||||
|
title = d("title")
|
||||||
|
title.html(re.sub("((Class)|(Struct))( Template)? Reference", "Concept Reference", title.html()))
|
||||||
# remove the include
|
# remove the include
|
||||||
include_statement = d(".contents").children().eq(0)
|
include_statement = d(".contents").children().eq(0)
|
||||||
# should check that this is really the div we think it is
|
# should check that this is really the div we think it is
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue