Add Microdata/Schema.org autocompletion suport to PHPStorm

autocomplete, microdata, phpstorm, schema.org

Solution

yes. For the code like

<div itemscope itemtype="http://data-vocabulary.org/Person">
    My name is <span itemprop="name">Smith</span>
    <span itemprop="<ctrl+space here>" itemscope itemtype="http://data-vocabulary.org/Address">
        <span itemprop="locality">Albuquerque</span>
        <span itemprop="region">NM</span>
    </span>
</div>

completion suggests the corresponding properties. But you need to fetch the resource to make it work - hit Alt+Enter on the URL and choose 'Fetch external resource'

Problem

Exist way add schema.org autocompletion to PHPStorm ? For example I want autocompletion for ``` itemscope itemtype="http://schema.org/Article" ```

Original source