Gitbook中底部链接gitbook Published wi

2019-12-06  本文已影响0人  小马哥是没有感情的

写在前面
Gitbook是一款很好用的文档生成程序,免费使用所以给个链接也不过分啦,
这里的方法仅供参考或用于特殊用途

用GitBook生成的网页中,在左侧目录下方默认有一个Published with GitBook连接,可以将这个连接去掉,或者替换成其它连接。

方法:

在gitbook站点目录创建_layouts->website->summary.html
One
Two
Three

summary.html文件代码

{% macro articles(_articles) %}
    {% for article in _articles %}
        <li class="chapter {% if article.path == file.path and not article.anchor %}active{% endif %}" data-level="{{ article.level }}" {% if article.path %}data-path="{{ article.path|resolveFile }}"{% endif %}>
            {% if article.path and getPageByPath(article.path) %}
                <a href="{{ article.path|resolveFile }}{{ article.anchor }}">
            {% elif article.url %}
                <a target="_blank" href="{{ article.url }}">
            {% else %}
                <span>
            {% endif %}
                    {% if article.level != "0" and config.pluginsConfig['theme-default'].showLevel %}
                        <b>{{ article.level }}.</b>
                    {% endif %}
                    {{ article.title }}
            {% if article.path  or article.url %}
                </a>
            {% else %}
                </span>
            {% endif %}

            {% if article.articles.length > 0 %}
            <ul class="articles">
                {{ articles(article.articles, file, config) }}
            </ul>
            {% endif %}
        </li>
    {% endfor %}
{% endmacro %}

<ul class="summary">
    {% set _divider = false %}
    {% if config.links.sidebar  %}
    {% for linkTitle, link in config.links.sidebar  %}
        {% set _divider = true %}
        <li>
            <a href="{{ link }}" target="_blank" class="custom-link">{{ linkTitle }}</a>
        </li>
    {% endfor %}
    {% endif %}

    {% if _divider %}
    <li class="divider"></li>
    {% endif %}

    {% for part in summary.parts %}
        {% if part.title %}
        <li class="header">{{ part.title }}</li>
        {% elif not loop.first %}
        <li class="divider"></li>
        {% endif %}
        {{ articles(part.articles, file, config) }}
    {% endfor %}

    <li class="divider"></li>

    <li>
        <a href="https://www.baidu.com" target="blank" class="gitbook-link">
            改成百度了哦
        </a>
    </li>
    
    <!--<li>-->
        <!--<a href="https://www.gitbook.com" target="blank" class="gitbook-link">-->
            <!--{{ "GITBOOK_LINK"|t }}-->
        <!--</a>-->
    <!--</li>
</ul>

修改前

修改前

修改后:

修改后

直抓重点,点个赞
参考:隐藏删除 gitbook Published with GitBook 的方法

上一篇下一篇

猜你喜欢

热点阅读