misc. fixes for reported issues

This commit is contained in:
tomjohnson1492
2016-11-09 22:34:40 -08:00
parent c9ad9bf8da
commit 2db15f4e4d
2 changed files with 14 additions and 23 deletions

View File

@ -665,8 +665,6 @@ div.tags {padding: 10px 5px;}
} }
hr { hr {
border: 0;
border-bottom: 1px dashed #ccc;
background: #999; background: #999;
margin: 30px 0px; margin: 30px 0px;
width: 90%; width: 90%;

View File

@ -48,7 +48,7 @@ You can use Multimarkdown syntax for tables. The following shows a sample:
## HTML Tables {#htmltables} ## HTML Tables {#htmltables}
If you need a more sophisticated table syntax, use HTML syntax for the table. Although you're using HTML, you can use Markdown inside the table cells by adding `markdown="1"` as an attribute for the `td` tag, as shown in the following table. You can also control the column widths. If you need a more sophisticated table syntax, use HTML syntax for the table. Although you're using HTML, you can use Markdown inside the table cells by adding `markdown="span"` as an attribute for the `td` tag, as shown in the following table. You can also control the column widths.
```html ```html
<table> <table>
@ -58,27 +58,24 @@ If you need a more sophisticated table syntax, use HTML syntax for the table. Al
</colgroup> </colgroup>
<thead> <thead>
<tr class="header"> <tr class="header">
<th align="left">Field</th> <th>Field</th>
<th align="left">Description</th> <th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td align="left" markdown="1">First column **fields**</td> <td markdown="span">First column **fields**</td>
<td align="left" markdown="1">Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags].</td> <td markdown="span">Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags].</td>
</tr> </tr>
<tr> <tr>
<td align="left" markdown="1">Second column **fields**</td> <td markdown="span">Second column **fields**</td>
<td align="left" markdown="1">Some more descriptive text. Here we have a Markdown-formatted list: <td markdown="span">Some more descriptive text.
* first item
* second item
* third item
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
``` ```
**Result:** **Result:**
<table> <table>
<colgroup> <colgroup>
@ -87,22 +84,18 @@ If you need a more sophisticated table syntax, use HTML syntax for the table. Al
</colgroup> </colgroup>
<thead> <thead>
<tr class="header"> <tr class="header">
<th align="left">Field</th> <th>Field</th>
<th align="left">Description</th> <th>Description</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td align="left" markdown="1">First column **fields**</td> <td markdown="span">First column **fields**</td>
<td align="left" markdown="1">Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags].</td> <td markdown="span">Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags].</td>
</tr> </tr>
<tr> <tr>
<td align="left" markdown="1">Second column **fields**</td> <td markdown="span">Second column **fields**</td>
<td align="left" markdown="1">Some more descriptive text. Here we have a Markdown-formatted list: <td markdown="span">Some more descriptive text.
* first item
* second item
* third item
</td> </td>
</tr> </tr>
</tbody> </tbody>