Git Product home page Git Product logo

wu-kan.github.io's Issues

关于同步仓库的问题

首先感谢wu-kan大佬!
很喜欢大佬的博客,但是有个问题,大佬的知识结晶已经很多了(帖子和图片), 仓库好大啊
fork之后,clone到本地或者之后同步大佬的仓库,速度很慢
不知道大佬有没有好的解决方案

关于侧边栏在某些特定情况下发生抖动的原因和解决方案

在侧边栏文本的高度到达某一个特定区间(刚好大于侧边栏的最大高度)时,滚动条会出现。滚动条出现后由于区域的缩放导致文本高度又小于了侧边栏的最大高度,滚动条又会消失。
这导致了所谓侧边栏的抖动。
解决方案就是加一条类似的CSS

html, body { 
  overflow: scroll; 
  min-height:101%;
}
body {
  width: 100vw;
  overflow: hidden;
}

我的建议是加在append_to_sidebar:键里

但是这个做法会唐突加入一个底边的滚动条...
解决这个问题可能我还得调两天(调整overflow-x为hidden会使得整个新增功能失效,或许需要找一个另外的实现方式)(前端苦手

再次感谢您的主题!

看板娘首页按钮跳转404

因为我的域名加了一个文件路径,而点击看板娘的首页按钮时直接访问的域名,导致404。这个是要改哪里的配置哇
image
image
image

对KaTeX过长公式渲染超出页面的修正

小问题,今天在迁移博文的时候发现公式过长时在移动端显示不全,然后随手测试了一下,发现桌面端也有同样的问题。
修正还是简单的,对公式加一个底端滚动条。
KaTeX公式渲染的class名称是katex-display,加一条CSS

<style>
  .katex-display {
    min-height: 100%;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
  @media (max-aspect-ratio: 2400/1850) {
    .katex-display::-webkit-scrollbar {
      display: none; /*在移动端不显示横向滚动条*/
    }
  }
</style>

推荐放到page.katex.append键里

Font changes issue

Hey, @wu-kan I want to change the font of the main page and sidebar, how to do it:
Screenshot 2024-05-11 235032

still can't do it:
Screenshot 2024-05-11 235215

thanks

关于jekyll生成站点地图(sitemap.xml)

您好,我想让google收录我的个人网站,在查询jekyll的相关教程后,我在本地安装了jekyll-stemap的插件并且在_config文件中的Plugins中添加了 - jekyll-sitemap,但是运行jekyll s 之后提示我 - jekyll-sitemap这一句缺少冒号,所以我想问下这里正确的写法应该是怎样的?谢谢!

关于Katex对$$ $$之间的公式的渲染

首先要对该模板的作者表示感谢, 我在使用中发现在$$ $$之间的公式在web端没法显示,在本地可以显示,不知道什么原因,查看了楼主自己的post中的2019-07-08-并行与分布式计算复习笔记博文也发现$$ $$ 之间的内容不能显示.请教一下.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.