我想在Sphinx中创建自己的角色(内联标记)。
我的例子是:“我有一段文字,我想提出:myRole:this one
。
该怎么做?
在我的index.rst中,包括一个声明自定义角色的文件:
.. include:: _static/myDirectives.rst.
在myDirective.rst中,我声明我的角色:
.. role:: testNewRole
:class: testNewRole
然后在另一个rst文件中使用它:
I have a text and I want to use my :testNewRole:`own role here`.