type (String) - Type of the entity. One of MENTION (@username), hashtag, bot_command, url, email, bold (bold text), italic (italic text), code (monowidth string), pre (monowidth block), text_link (for clickable text URLs)
Как думаете, поисковики на это смотрят негативно, что на каждую подпапку отдельный сайтмап?
И вообще если у каждой подпапки удалить роботс, норм будет?
<h2>Greetings</h2>
<div class="container">
<div class="inner">Hello</div>
<div class="inner">Goodbye</div>
</div>
$('.container').append($('h2'));
<div class="container">
<div class="inner">Hello</div>
<div class="inner">Goodbye</div>
<h2>Greetings</h2>
</div>
$('.container').append('<h1>Hello World!</h1>');