Github README突然无法正常显示

时间:2017-03-18 15:48:17

标签: github markdown github-flavored-markdown

README.md文件突然无法在我在Github上托管的存储库中正常显示。

https://github.com/kensplanet/dev-dictionary

enter image description here

1 个答案:

答案 0 :(得分:2)

不要在HTML中放置markdown。

您正在使用:<kbd></kbd>包装降价图片,而不是在其他HTML中使用HTML <img>标记。这就是为什么你看到文字而不是你的形象。

此外,尽可能使用markdown而不是HTML,因为降价处理器经常会出错。

以下是更正的降价文件:

<h1 align="center">Dev Dictionary</h1>
<p align="center">Find information on any technology</p>
<kbd><img src="https://cloud.githubusercontent.com/assets/4705188/20508600/ac62b414-b030-11e6-9dfe-691a6a3250fd.png" alt="image">
</kbd>

## Overview
This is the repository of **Dev Dictionary**, a Chrome Extension to help developers find information on any technology. It can be installed through the [Chrome Web Store](https://chrome.google.com/webstore/detail/dev-dictionary/mbhildcgplbobgnhgnihmeiaokhdaelf).

## Development
* For more information regarding development of Chrome extensions, see [Getting Started: Building a Chrome Extension](https://developer.chrome.com/extensions/getstarted)
* For more information regarding Chrome extension APIs, see [Chrome Platform APIs](https://developer.chrome.com/extensions/api_index)

## Libraries
* [React](https://facebook.github.io/react/)
* [Redux](http://redux.js.org/)
* [Webpack](https://webpack.github.io/)
* [Node JS](https://nodejs.org)
* [Bootstrap](http://getbootstrap.com/)
* [jQuery](https://jquery.com/)

enter image description here