/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v1.8.1
src/OneScriptDocumenter/MarkdownGen.cs
19 строк
613 B
EvilBeaver
Префиксы лицензии
23 янв 2020, 01:06
23 янв 2020, 01:06
0516913
Код
Авторство
О чём код?
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------*/ using MarkdownDeep; namespace OneScriptDocumenter { class MarkdownGen : MarkdownDeep.Markdown { public override void OnPrepareLink(HtmlTag tag) { tag.attributes["href"] = tag.attributes["href"] + ".htm"; base.OnPrepareLink(tag); } } }