在 pub.dev 中将图像添加到插件的自述文件
Adding images to Readme of plugin in pub.dev
我在 pub.dev 中有一个名为 UPI India 的插件,其自述文件包含两个图像。这两个图像在 Github 的自述文件中可见,但在 pub.dev
的自述文件中不可见
Pub 中的图片
图片在Github
我在自述文件中使用的是绝对路径。
<table>
<tr>
<td><img src="https://github.com/mdazharuddin1011999/UPI-Plugin-Flutter/blob/master/images/success.jpg" alt="Success Status" width="200"></td>
<td><img src="https://github.com/mdazharuddin1011999/UPI-Plugin-Flutter/blob/master/images/show.gif" alt="How example looks" width="200"></td>
</tr>
</table>
有人知道为什么会这样吗?
问题已解决!
我使用了 cdn link 而不是存储库 link。
<img src="https://user-images.githubusercontent.com/42082172/82893565-d3643480-9f6e-11ea-96a7-493181df6214.gif" alt="How example looks" width="300" height="540">
<img src="https://user-images.githubusercontent.com/42082172/82893023-1245ba80-9f6e-11ea-868d-a55062d34086.jpg" alt="Success Status" width="300" height="540">
希望对以后的人有所帮助。
有一种更简单的方法,您可以尝试这样的操作:
<table>
<tr>
<td><img src="https://github.com/mdazharuddin1011999/UPI-Plugin-Flutter/raw/master/images/success.jpg" alt="Success Status" width="200"></td>
<td><img src="https://github.com/mdazharuddin1011999/UPI-Plugin-Flutter/raw/master/images/show.gif" alt="How example looks" width="200"></td>
</tr>
</table>
只需将 /blob/
中的 /blob/
更改为 /raw/
Github url。
我在 pub.dev 中有一个名为 UPI India 的插件,其自述文件包含两个图像。这两个图像在 Github 的自述文件中可见,但在 pub.dev
的自述文件中不可见Pub 中的图片
图片在Github
我在自述文件中使用的是绝对路径。
<table>
<tr>
<td><img src="https://github.com/mdazharuddin1011999/UPI-Plugin-Flutter/blob/master/images/success.jpg" alt="Success Status" width="200"></td>
<td><img src="https://github.com/mdazharuddin1011999/UPI-Plugin-Flutter/blob/master/images/show.gif" alt="How example looks" width="200"></td>
</tr>
</table>
有人知道为什么会这样吗?
问题已解决!
我使用了 cdn link 而不是存储库 link。
<img src="https://user-images.githubusercontent.com/42082172/82893565-d3643480-9f6e-11ea-96a7-493181df6214.gif" alt="How example looks" width="300" height="540">
<img src="https://user-images.githubusercontent.com/42082172/82893023-1245ba80-9f6e-11ea-868d-a55062d34086.jpg" alt="Success Status" width="300" height="540">
希望对以后的人有所帮助。
有一种更简单的方法,您可以尝试这样的操作:
<table>
<tr>
<td><img src="https://github.com/mdazharuddin1011999/UPI-Plugin-Flutter/raw/master/images/success.jpg" alt="Success Status" width="200"></td>
<td><img src="https://github.com/mdazharuddin1011999/UPI-Plugin-Flutter/raw/master/images/show.gif" alt="How example looks" width="200"></td>
</tr>
</table>
只需将 /blob/
中的 /blob/
更改为 /raw/
Github url。