I am using Jira client for .NET via webservices; that enabled me to perform various tasks like retrieve and update issues, fields etc. The problem is when the issue is retrieved, some of the issue fields are in a wiki text format, e.g.
* Heading
*# point 1
*# point 2
I need to convert this format to plain text or HTML. After doing some research I found that this functionality is provided in JIRA Api by
Class AtlassianWikiRenderer http://docs.atlassian.com/jira/latest/com/atlassian/jira/issue/fields/renderer/wiki/AtlassianWikiRenderer.html
My question is how can I use the functionality (AtlassianWikiRenderer) or other as specified in here http://docs.atlassian.com/jira/latest/overview-summary.html in a .NET project?