We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have some documented code blocks in doxygen that are not c++. But parser.js always uses ```cpp for the block.
The xml file has the info and it can be pulled using this code in parser.js
case 'programlisting': var extension = 'cpp'; if( element.$ !== undefined ){ if( element.$.filename !== undefined ){ extension = element.$.filename.substr(1); } } s = '\n```' + extension + '\n'; break;
I can create a pull request if this is a worthwhile change.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have some documented code blocks in doxygen that are not c++. But parser.js always uses ```cpp for the block.
The xml file has the info and it can be pulled using this code in parser.js
I can create a pull request if this is a worthwhile change.
The text was updated successfully, but these errors were encountered: