diff --git a/css/customstyles.css b/css/customstyles.css
index 2d14ebb..676c804 100644
--- a/css/customstyles.css
+++ b/css/customstyles.css
@@ -665,8 +665,6 @@ div.tags {padding: 10px 5px;}
}
hr {
- border: 0;
- border-bottom: 1px dashed #ccc;
background: #999;
margin: 30px 0px;
width: 90%;
diff --git a/pages/mydoc/mydoc_tables.md b/pages/mydoc/mydoc_tables.md
index 466c614..75d64a3 100644
--- a/pages/mydoc/mydoc_tables.md
+++ b/pages/mydoc/mydoc_tables.md
@@ -48,7 +48,7 @@ You can use Multimarkdown syntax for tables. The following shows a sample:
## 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
@@ -58,27 +58,24 @@ If you need a more sophisticated table syntax, use HTML syntax for the table. Al
-First column **fields** |
-Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags]. |
+First column **fields** |
+Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags]. |
-Second column **fields** |
-Some more descriptive text. Here we have a Markdown-formatted list:
-
-* first item
-* second item
-* third item
+ | Second column **fields** |
+Some more descriptive text.
|
```
+
**Result:**
@@ -87,22 +84,18 @@ If you need a more sophisticated table syntax, use HTML syntax for the table. Al
-First column **fields** |
-Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags]. |
+First column **fields** |
+Some descriptive text. This is a markdown link to [Google](http://google.com). Or see [some link][mydoc_tags]. |
-Second column **fields** |
-Some more descriptive text. Here we have a Markdown-formatted list:
-
-* first item
-* second item
-* third item
+ | Second column **fields** |
+Some more descriptive text.
|