Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
For the parent trac issue please see: https://meta.trac.wordpress.org/ticket/3063.
In order to add the Gutenberg JSDoc into the code reference we'd want to be able to differentiate between JS and PHP functions, classes etc.
I've written a simple JSDoc template at https://github.com/herregroen/jsdoc-parser that converts JSDoc into a JSON format compatible with this plugin's import.
But importing that could potentially lead to conflicts as PHP and JS functions/classes might have the same names. This PR expands the structure of the plugin to support multiple programming languages. For now it's just a simple direct approach that needs further testing but I wanted to share it as soon as possible in order to gather input.
I've chosen to explicitly add
php
as well which means that all existing posts would have their name changed as well. Which means migrating would be a concern.