Lines Matching refs:doc
163 doc = 'ifdef::' + apiVersion + '[]\n'
164 doc += ' ' + self.specLink(xrefName, xrefText, isRefpage) + '\n'
165 doc += 'endif::' + apiVersion + '[]\n'
166 doc += 'ifndef::' + apiVersion + '[]\n'
167 doc += ' ' + self.conventions.api_name() + ' ' + dottedVersion + '\n'
168 doc += 'endif::' + apiVersion + '[]\n'
170 return doc
173 doc = 'ifdef::' + extName + '[]\n'
174 doc += indent + self.conventions.formatExtension(extName) + '\n'
175 doc += 'endif::' + extName + '[]\n'
176 doc += 'ifndef::' + extName + '[]\n'
177 doc += indent + '`' + extName + '`\n'
178 doc += 'endif::' + extName + '[]\n'
180 return doc
531 doc = ''
540 doc += 'ifndef::' + condition + '[]\n'
541 doc += innerdoc
542 doc += 'endif::' + condition + '[]\n'
547 doc += 'ifdef::' + condition + '+' + extName + '[]\n'
548 doc += content + '\n' # does not include innerdoc; the ifdef was merged with the one above
549 doc += 'endif::' + condition + '+' + extName + '[]\n'
551 doc += innerdoc
555 doc += innerdoc
557 return doc