-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Extra new line on footnote #721
Comments
Add this to ol.footnotes-list li p {
display: contents;
} |
Thanks! |
@stevenjoezhang The problem is caused by this pull (#669) by setting the global style of |
@Aqua-Dream I know, and I have checked... Do you have any good idea to solve this: https://stackoverflow.com/questions/21769248/list-with-nested-overflow-x-hidden-hides-list-counter-point-why-is-this-a-b , without setting |
In some cases there will be problems, such as the mathjax formula inside |
BTW, the Is it the default behavior of Mathjax or else...? It seems that my demo (katex) also works well: ---
title: test
date: 2019-03-24 11:09:59
tags:
mathjax: true
---
- blablablablablablablablablabla
- blablablablablablablabla $f_{k+1}=x+(k+1)=(x+k)+1=S(x+k)=Comp_1^1[S,f_k]\in{\mathcal{BF}}=f_{k+1}=x+(k+1)=(x+k)+1=S(x+k)=Comp_1^1[S,f_k]\in{\mathcal{BF}}$ |
Since each Personally, I will vote for keeping the default behavior (without setting overflow or anything) to avoid bugs, considering that the user themselves should avoid writing equations that are too long, even in Latex. |
@Aqua-Dream Thanks. We changed the style back in #752. These warnings will be added to the docs:
NO LONGER NEEDED |
I agree and want to create new issue
Expected behavior
I'm using hexo-renderer-markdown-it-plus to support footnote. My source file is
So I expect the footnote should be
Actual behavior
However, it is actually
As the following picture shows. Or you can also go to "https://aqua.hk.cn/Algorithm/plixxc/" to see the generated html. I find the problem is that the style of tag
<p>
is actuallydisplay: block;
. After changing it todisplay: contents
, there is no problem.Steps to reproduce the behavior
Package dependencies Information
Hexo Information
Hexo version
NexT Information
NexT Version:
NexT Scheme:
The text was updated successfully, but these errors were encountered: