Change README to Readme.md on Github

When I created a project on github, I setup a README file, which now appears on the project page. I've decided to switch to Readme.md so I can add some formatting, but github is still displaying the original README file. I've tried deleting the README and deleting both README and Readme.md and then re-adding Readme.md, but the original README is still on the project page.

https://github.com/toxygene/pale


It could be a cache issue, because the source code of your GitHub project page includes:

<!-- readme cache key: tree-readme:2188350:07c93010a313c998bb0d7c69f54b7d50525ca75e -->
<div id="readme" class="clearfix announce instapaper_body ">
  <span class="name"><span class="mini-icon mini-icon-readme"></span> README</span>
  <div class="plain"><pre># Pale

Pale is a simple PHP library that allows a developer to easily convert errors to exceptions without having to worry about the details of changing and restoring error handlers.

## Usage
```php
use Pale;
try {
    Palerun(function() {
        trigger_error(&quot;this will become an exception&quot;);
    });
} catch(ErrorException $e) {
    var_dump($e);
}
```
</pre></div>

The " cache key: tree-readme:2188350:07c9301... " suggests the content of that page could be updated in the next following hours.

链接地址: http://www.djcxy.com/p/7856.html

上一篇: 将图像添加到GitHub上的README.md

下一篇: 在Github上将README更改为Readme.md