#html #syntax #markdown
#HTML #синтаксис #уценка
Вопрос:
Я пытаюсь создать оглавление для моего файла markdown, однако у меня проблема с тем, что оно распространяется на остальной контент на странице.
На приведенном выше рисунке вы можете видеть, что раздел отсутствует, а изображение переместилось вверх. Я выделил проблемную область в этом разделе:
<!-- CONTENTS -->
<details open="open">
<summary>Table of Contents</summary>
<ol>
<li><a href="#Objective">Objective / Goal of the Game</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#board-layout">Board Layout</a></li>
<li><a href="#upgrades">Upgrades</a></li>
<li><a href="#turn-structure">Turn Structure</a></li>
<li><a href="#trade">Trade</a></li>
<li><a href="#bankruptcy">Bankruptcy</a></li>
<li><a href="#tips>Tips</a></li>
</ol>
</details>
<!--OBJECTIVE-->
## Objective, Goal of the Game.
The winner in Back from the Brink is whichever Player has the most fully improved conservation areas by the end of the turn limit, or is the last player still in the game.
If the number of conservation areas is tied at the end of the game, whoever has the most money is crowned the winner.
<!--Resources-->
## Resources
Their are two types of resources in "Back from the Brink".
1. Money (£) - used for purchasing and improving conservation areas.
2. Upgrade Points (UP) - used for purchasing player upgrades.
<!--board-layout-->
## Board Layout
See here a layout of the board (for visually reference)
<p align="center">
<img src="images/htpboardlayout.png" alt="board layout">
</p>
As you can see their are several types of board tiles:
* **Conservation Area Tile** – This is an endangered species habitat. If unowned, a player can **buy the Conservation Area** for money. If a user other than the user who bought the tile lands on it, they will have to **pay a ticket fee** to see the animals. This fee is payed directly to the **owner of the Conservation Area**. This ticket fee increases as the Conservation Area is improved. Each **Conservation Area** belongs to a **Continent**. You must own all Conservation Areas in a **Continent** in order to improve the **Conservation Areas**.
Изображение каким-то образом становится гиперссылкой и предоставляет URL-адрес:
https://github.com/.../#tips>Tips
Objective, Goal of the Game.
The winner in Back from the Brink is whichever Player has the most fully improved conservation areas by the end of the turn limit, or is the last player still in the game.
If the number of conservation areas is tied at the end of the game, whoever has the most money is crowned the winner.
Resources
Their are two types of resources in "Back from the Brink".
- Money (£) - used for purchasing and improving conservation areas.
- Upgrade Points (UP) - used for purchasing player upgrades.
Board Layout
See here a layout of the board (for visually reference)
<p align=
Я убежден, что я не закрыл структуру HTML, но, похоже, я не могу точно определить, где она находится.
Комментарии:
1. Я не совсем понимаю, о чем вы спрашиваете (как мы должны знать, как вы хотите , чтобы это выглядело, чтобы мы могли понять, что «раздел неверен, и изображение переместилось вверх»?), Но есть проблема с цитированием, которую подсветка синтаксиса SO делает довольно ясной. У вас
<li><a href="#tips>Tips</a></li>
отсутствует заключительная цитата вhref
.2. Определенно отсутствует цитата.