Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
7aaefd4d
Commit
7aaefd4d
authored
Aug 09, 2013
by
hbristow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved escaped character formatting in docs
parent
a659562c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
filters.py
modules/matlab/generator/filters.py
+5
-1
template_map_base.m
modules/matlab/generator/templates/template_map_base.m
+2
-2
No files found.
modules/matlab/generator/filters.py
View file @
7aaefd4d
...
...
@@ -92,7 +92,11 @@ def toUnderCase(text):
def
stripTags
(
text
):
upper
=
lambda
pattern
:
pattern
.
group
(
1
)
.
upper
()
text
=
re
.
sub
(
'<code>(.*?)</code>'
,
upper
,
text
)
text
=
re
.
sub
(
'<(.*?)>'
,
''
,
text
)
text
=
re
.
sub
(
'<([^=
\
s].*?)>'
,
''
,
text
)
text
=
re
.
sub
(
'<'
,
'<'
,
text
)
text
=
re
.
sub
(
'>'
,
'>'
,
text
)
text
=
re
.
sub
(
'&le'
,
'<='
,
text
)
text
=
re
.
sub
(
'&ge'
,
'>='
,
text
)
return
text
def
qualify
(
text
,
name
):
...
...
modules/matlab/generator/templates/template_map_base.m
View file @
7aaefd4d
...
...
@@ -43,14 +43,14 @@
% bug report to the OpenCV team, you can get a printout of diagnostic
% information to submit along with your report by typing:
%
%
cv.buildInformation();
%
<a href="matlab: cv.buildInformation()">cv.buildInformation();</a>
%
% <strong>OTHER RESOURCES</strong>
% OpenCV documentation online: <a href="matlab: web('http://docs.opencv.org', '-browser')">http://docs.opencv.org</a>
% OpenCV issue tracker: <a href="matlab: web('http://code.opencv.org', '-browser')">http://code.opencv.org</a>
% OpenCV Q&A: <a href="matlab: web('http://answers.opencv.org', '-browser')">http://answers.opencv.org</a>
%
% See also: cv.help,
cv.buildInformation
% See also: cv.help,
<a href="matlab: cv.buildInformation()">cv.buildInformation</a>
%
% Copyright {{ time.strftime("%Y", time.localtime()) }} The OpenCV Foundation
%
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment