Таблицы не работают на моем сайте GitHub Pages - PullRequest
0 голосов
/ 18 ноября 2018

У меня есть таблица с тремя столбцами и несколькими строками. Таблица работает нормально в репозитории, но если я добавлю файл .md на мой сайт GitHub Pages, таблица останется сырой. Я знаю, что все страницы GitHub будут регенерированы как .html файл (ы), и все теги HTML работают соответственно. Как проецировать таблицу без HTML-тегов?

Это работает:

<table>
  <tr>
    <th>var</th>
    <th>let</th>
    <th>const</th>
  </tr>
  <tr>
    <td>
      Declares a variable, optionally initializing it to a value.
    </td>
    <td>
      Declares a block-scoped, local variable, optionally initializing it to a value.
    </td>
    <td>
      Declares a block-scoped, read-only named constant.
    </td>
  </tr>
  ...
</table>

Это не:

## Variable Declarations
| **var** | **let** | **const** |
|-----|-----|-----|
| Declares a variable, optionally initializing it to a value. | Declares a block-scoped, local variable, optionally initializing it to a value. | Declares a block-scoped, read-only named constant. |
| Variable declared by **`var`** must start with a letter, underscore ( _ ) or dollar sign ($) and can contain alphabetic, numeric, or underscore characters. | Variable declared by **`let`** must start with a letter, underscore ( _ ) or dollar sign ($) and can contain alphabetic, numeric, or underscore characters. | Variable declared by **`const`** must start with a letter, underscore ( _ ) or dollar sign ($) and can contain alphabetic, numeric, or underscore characters. |

Вот полный источник , а вот обработанный вывод для вашей справки.

1 Ответ

0 голосов
/ 18 ноября 2018

Проблема почти наверняка в том, что вы забыли поставить пустую строку перед таблицей.Попробуйте вместо этого:

## Variable Declarations

| **var** | **let** | **const** |
|-----|-----|-----|
| Declares a variable, optionally initializing it to a value. | Declares a block-scoped, local variable, optionally initializing it to a value. | Declares a block-scoped, read-only named constant. |
| Variable declared by **`var`** must start with a letter, underscore ( _ ) or dollar sign ($) and can contain alphabetic, numeric, or underscore characters. | Variable declared by **`let`** must start with a letter, underscore ( _ ) or dollar sign ($) and can contain alphabetic, numeric, or underscore characters. | Variable declared by **`const`** must start with a letter, underscore ( _ ) or dollar sign ($) and can contain alphabetic, numeric, or underscore characters. |
...