-
Notifications
You must be signed in to change notification settings - Fork 678
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
新增一个每夜构建的镜像地址 #43
Comments
👍 |
为了达到更好的阅读效果,我在 // ==UserScript==
// @name Better gopl read
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 调整 Gopl 页面宽度及字体大小,以便更加适合阅读。
// @author High Jiang
// @match *://book.itsfun.tk/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var style = document.createElement('style');
style.innerHTML = '.page-inner{ max-width: 1080px; width: 100%; font-size: 16px}';
document.head.appendChild(style);
})(); |
thanks |
更新: 最新构建镜像地址请使用 https://book.itsfun.top/gopl-zh 之前的域名 itsfun.tk 是在 freenom 上免费申请的,一年免费期明明要到明年4月份才到,但是最近被莫名删除了,已经是第二次遇到,再也不敢用了 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
本人使用 docker 在 aws 上运行了一个 gopl-zh 容器,设置每晚 2:00 克隆仓库并构建一次,力争将最新的文档呈现在大伙儿面前。
镜像地址:https://book.itsfun.top/gopl-zh
项目地址:https://github.com/ykfq/nginx-gopl-zh
有问题欢迎指正,也欢迎大家提 issue。
The text was updated successfully, but these errors were encountered: