Gantt charts are way too small to be readable

for the image enlarging issue, there is a .css workaround that can help. you can try that.

Inspired by the posts in:

the code I used right now is like this:
in case the mouse hovers on a image:

.markdown-preview-view img:hover {
	/*cursor:zoom-out;*/
	display:block;
	z-index:100;
	/*position:fixed;*/
    max-height:100%;
    max-width:100%;
    height:100%;
    width:100%;
    object-fit: contain;
    margin:0 auto;
    text-align:center;
    /*top: 50%;
  	transform: translateY(-50%);*/
    padding:0;
    left:0;
    right:0;
    bottom:0;
    background:var(--background-primary);
    outline:none;
}

in case you click an image:

.markdown-preview-view img:active {
	cursor:zoom-out;
	display:block;
	z-index:100;
	position:fixed;
    max-height:100%;
    max-width:100%;
    height:100%;
    width:100%;
    object-fit: contain;
    margin:0 auto;
    text-align:center;
    top: 50%;
  	transform: translateY(-50%);
    padding:0;
    left:0;
    right:0;
    bottom:0;
    background:var(--background-primary);
}

For me, they can enlarge the image to the extent that is readable.