当我在本地使用jekyll ruby插件https://github.com/joshdavenport/jekyll-regex-replace插件时,它可以正常工作,但是当该页面托管在github页面上时,我看不到任何效果。请比较以下内容:
无论哪种情况,我都希望以下代码(来自here)同样有效:
{% if page.format_inline_comments %}
{% assign inline_comment_type1_regex = '\[\[(.+?)\]\]' %}
{% assign inline_comment_type1_regex_replacement = '<div class="inline_comment">[\1]</div>' %}
{% assign inline_comment_type2_regex = '\(=(.+?)\)' %}
{% assign inline_comment_type2_regex_replacement = '<div class="inline_comment">(=\1)</div>' %}
{% assign dummy_example = '(=कश्चित्)' %}
<!--Handles stuff like: जरते (=स्तौति) स्वा॒धीः or त्रे॒धा {रूपाणि अग्नि-विद्युत्-सूर्यास्} त्र॒याणि॑-->
{{content| regex_replace: inline_comment_type1_regex, inline_comment_type1_regex_replacement | regex_replace: inline_comment_type2_regex, inline_comment_type2_regex_replacement}}
{% else %}
{{content}}
{% endif %}
有什么作用?该如何解决?