Git Product home page Git Product logo

Comments (6)

jdanyow avatar jdanyow commented on May 22, 2024

please share a link to the page that has the height issue

from utterances.

KENNYSOFT avatar KENNYSOFT commented on May 22, 2024

https://blog.kennysoft.kr/2018-05-25-web/ this page

from utterances.

jdanyow avatar jdanyow commented on May 22, 2024

I suspect it has something to do with your emoji script or the mathjax script.

Try a process of elimination- comment out all this code:

<script src="https://unicodey.com/js-emoji/lib/emoji.js" type="text/javascript"></script>
<script>
$.fn.emoji=function(){
	var emoji=new EmojiConvertor();
	emoji.replace_mode="unified";
	return this.each(function(){
		$(this).html(function(i,oldHtml){
			return emoji.replace_colons(oldHtml);
		});
	});
};
$(".markdown-body").emoji();
</script>
<script src="https://fat.github.io/zoom.js/js/zoom.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML" async></script>
<script>
var imgs=document.querySelectorAll("p > img");
for(var i=0;i<imgs.length;++i)
{
	imgs[i].parentNode.style.textAlign="center";
	imgs[i].setAttribute("data-action","zoom");
}
</script>

Then add parts back in, one by one, until you find the conflicting script.

from utterances.

KENNYSOFT avatar KENNYSOFT commented on May 22, 2024

Oh, emoji is the problem. When I deleted this part, it works well.

<script>
$.fn.emoji=function(){
	var emoji=new EmojiConvertor();
	emoji.replace_mode="unified";
	return this.each(function(){
		$(this).html(function(i,oldHtml){
			return emoji.replace_colons(oldHtml);
		});
	});
};
$(".markdown-body").emoji();
</script>

Hmm, I should investigate how to use both. Thanks!

from utterances.

jdanyow avatar jdanyow commented on May 22, 2024

I think if you put utterances outside of the element with class="markdown-body" it will work.

from utterances.

KENNYSOFT avatar KENNYSOFT commented on May 22, 2024

Thanks, confirmed working. Looking for more good way to treat it.

from utterances.

Related Issues (20)

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.