我想在github中創建一個markdown文件,並且想在其中放入一個svg圖像。 github根本沒有渲染圖像。我嘗試了<img />
,與![]()
。根本不工作!任何人都見過這個?github svg根本沒有渲染
剛修改的存儲庫,以便爲公衆:https://github.com/michelucci/deepbook
由於提前,翁貝託
我想在github中創建一個markdown文件,並且想在其中放入一個svg圖像。 github根本沒有渲染圖像。我嘗試了<img />
,與![]()
。根本不工作!任何人都見過這個?github svg根本沒有渲染
剛修改的存儲庫,以便爲公衆:https://github.com/michelucci/deepbook
由於提前,翁貝託
GitHub的降價似乎阻止SVG文件,但你可以隨時使用裸露的HTML標籤:
<img src="neuron_fig1.svg"/>
請參閱issue 458關於任何內嵌HTML,但由於它不是您的問題,您可以比較your page到this one:它確實顯示大量的svg圖片,並且它的source is here。
"source": [
"## Python Objects\n",
"\n",
"We begin with a look at a Python object. In Python, objects are stored in memory blocks independently allocated on the heap. A single floating point value looks something like this:\n",
"\n",
"![Python Float](fig/python_float.svg)\n",
"\n",
"This doesn’t look too bad, in a dynamically typed system we need to store some metadata about the type, and we need to store the data containing the value."
]
},
所以相對URL(到docs/intro-01/fig
)確實有效。
您的代碼:
"source": [
" ![](neuron_fig1.svg) \n",
" **Fig. 1** The structure of a neuron. $x_i$ are the input, $w_i$ are the weights."
]
你可以分享鏈接? – Mureinik
當然...只是修改爲公共存儲庫... https://github.com/michelucci/deepbook – Umberto