我正在尝试使用http://schema.org/Code在博客上标记源代码。标记源代码的正确方法是什么?
我正在使用 Google 工具对其进行测试:http ://www.google.com/webmasters/tools/richsnippets
<div itemscope itemtype="http://schema.org/Code" >
some code
</div>
我认为这样的事情可能会奏效。但是什么都没有注册。
我看到它继承自 creativeWork,所以也许我应该使用这些属性之一来包含源代码内容,但我不确定。例如:
<div itemscope itemtype="http://schema.org/Code" >
<meta itemprop="programmingLanguage" content="Java" />
<span itemprop="exampleOfWork">import java.util.*;</span>
</div>
但是代码没有注册。它说“exampleofwork 不是模式的一部分”,即使它应该被继承......
有人知道正确/首选的方法吗?