GitHub呈现my README.rst时出现问题。。?

GitHub呈现my README.rst时出现问题。。?,github,Github,我已经有了一个更新README.rst的方法,但是当涉及到我所包含的项目符号列表时,它的格式并不是我所期望的 除了“我的使用”部分外,其他一切似乎都正常,其中我有以下内容: ***** Usage ***** - Open the template file that corresponds to the API call you'd like to make. * Example: If we want to make a call to the RefundTransaction

我已经有了一个更新README.rst的方法,但是当涉及到我所包含的项目符号列表时,它的格式并不是我所期望的

除了“我的使用”部分外,其他一切似乎都正常,其中我有以下内容:

*****
Usage
*****

- Open the template file that corresponds to the API call you'd like to make.
    * Example: If we want to make a call to the RefundTransaction API we open up /templates/RefundTransaction.php

- You may leave the file here, or save this file to the location on your web server where you'd like this call to be made.
    * I like to save the files to a separate location and keep the ones included with the library as empty templates.
    * Note that you can also copy/paste the template code into your own file(s).

- Each template file includes PHP arrays for every parameter available to that particular API. Simply fill in the array parameters with your own dynamic (or static) data. This data may come from:
    * Session Variables
    * General Variables
    * Database Recordsets
    * Static Values
    * Etc.

- When you run the file you will get a $PayPalResult array that consists of all the response parameters from PayPal, original request parameters sent to PayPal, and raw request/response info for troubleshooting.
    * You may refer to the `PayPal API Reference Guide <https://developer.paypal.com/webapps/developer/docs/classic/api/>`_ for details about what response parameters you can expect to get back from any successful API request.
        + Example: When working with RefundTransaction, I can see that PayPal will return a REFUNDTRANSACTIONID, FEEREFUNDAMT, etc. As such, I know that those values will be included in $PayPalResult['REFUNDTRANSACTIONID'] and $PayPalResult['FEEREFUNDAMT'] respectively.

- If errors occur they will be available in $PayPalResult['ERRORS']

You may refer to this `overview video <http://www.angelleye.com/overview-of-php-class-library-for-paypal/>`_ of how to use the library, 
and there are also samples provided in the /samples directory as well as blank templates ready to use under /templates.

You may `contact me directly <http://www.angelleye.com/contact-us/>`_ if you need additional help getting started.  I offer 30 min of free training for using this library, 
which is generally plenty to get you up-and-running.
然而,出于某种原因,当你在GitHub上看到这一点时,项目符号列表的第一行出现了粗体和斜体,我不知道为什么。此外,显示会话变量、常规变量等的子列表应该是所有相同的子列表。我不知道为什么它在看到一般变量时会掉入另一个子系统


任何关于我在这里做错了什么的信息都将不胜感激。谢谢

从.rst切换到.md,然后使用


嗯……这对我来说根本不起作用。使用的根本没有给我任何格式,其余的还是一样的。看一看。看起来我可能需要使用.md而不是.rst。?是的,切换到md似乎与您链接到我的其他语法一起工作。现在只需要调整一些其他的东西就可以了。谢谢@AndrewAngell我确认:.md文件将正确解释标记。@VonC:当然,但标记不是重新构造的文本。毕竟,rst文件使用不同的标记语言:-P
## Usage

-  Open the template file that corresponds to the API call you'd like to make.
     * Example