编写提示

  • 自动将网址与电子邮件地址转变为链接。
  • 行和段被自动识别。<br /> 分行、<p> 段落开始以及 </p> 段落结束标记会被自动插入。如果段落没有被识别出来,只要加入一对空行。
  • 允许HTML标签:<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd><img>

  • You can use the <go> tags just like the <a>. The url will be rewritten to in internal URL that will eventually redirect the user to the given url. Depending on the settings the url will contain an identifying label constructed from the provided url. Alternatively you can provide a label by means of the "title" argument.

    For example:

    <go href="http://example.org/some/page">Some page example</go>
    produces:
    <a href="go/example.com/some/page">Some page example</a>
    Or like this:
    <go href="http://example.com/some/page" title="Some page">Some page example</go>
    produces:
    <a href="go/some_page" title="Some page">Some page example</a>