[Github-comments] [geany] Gtkdoc hdr (#890)

Colomban Wendling notifications at xxxxx
Thu Feb 18 23:24:03 UTC 2016


> +        proc = DoxygenProcess()
> +        self.brief = proc.process_element(xml)
> +        self.extra += proc.get_extra()
> +
> +    def add_detail(self, xml):
> +        proc = DoxygenProcess()
> +        self.detail = proc.process_element(xml)
> +        self.extra += proc.get_extra()
> +        self.since = proc.get_since()
> +
> +    def add_member(self, xml):
> +        name = xml.find("name").text
> +        proc = DoxygenProcess()
> +        brief = proc.process_element(xml.find("briefdescription"))
> +        # optional doxygen command output appears within <detaileddescription />
> +        proc.process_element(xml.find("detaileddescription"))

apparently processing the detailed description like this erases any possible annotation from the brief description, which is not handy for members

---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/890/files#r53399933
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20160218/e4263029/attachment.html>


More information about the Github-comments mailing list