Move over wiki documentation to repo in Markdown format (#1760)

* Change in-client regex help link to point to the github repository
This commit is contained in:
Mm2PL
2020-07-04 13:40:13 +02:00
committed by GitHub
parent ac0546185d
commit 0f9a612c55
4 changed files with 89 additions and 3 deletions
+4 -3
View File
@@ -95,9 +95,10 @@ void EditableModelView::addCustomButton(QWidget *widget)
void EditableModelView::addRegexHelpLink()
{
auto regexHelpLabel =
new QLabel("<a href='https://chatterino.com/help/regex'><span "
"style='color:#99f'>regex info</span></a>");
auto regexHelpLabel = new QLabel(
"<a href='"
"https://github.com/Chatterino/chatterino2/blob/master/docs/Regex.md'>"
"<span style='color:#99f'>regex info</span></a>");
regexHelpLabel->setOpenExternalLinks(true);
this->addCustomButton(regexHelpLabel);
}