Skip to content

Commit d16480d

Browse files
authored
Update help page with support email (#8868)
1 parent ee285d4 commit d16480d

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

app/test/frontend/golden/help_page.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,15 @@ <h1 id="help" class="hash-header">
152152
<a href="/help/content-moderation">content moderation</a>
153153
.
154154
</p>
155+
<h2 id="contact-us" class="hash-header">
156+
Contact us
157+
<a href="#contact-us" class="hash-link">#</a>
158+
</h2>
159+
<p>
160+
If the above information doesn't answer your questions, you can contact us at
161+
162+
.
163+
</p>
155164
</div>
156165
</div>
157166
</main>

app/test/shared/markdown_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,10 @@ void main() {
158158
markdownToHtml('[me](mailto:[email protected])',
159159
urlResolverFn: urlResolverFn),
160160
'<p><a href="mailto:[email protected]">me</a></p>\n');
161+
expect(
162+
markdownToHtml('mail to [email protected].'),
163+
'<p>mail to <a href="mailto:[email protected]">[email protected]</a>.</p>\n',
164+
);
161165
});
162166
});
163167

doc/help.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ To report concerns over potential [policy issues](/policy),
1515
please use the "Report package" link, see [content moderation][1].
1616

1717
[1]: /help/content-moderation
18+
19+
## Contact us
20+
21+
If the above information doesn't answer your questions, you can contact us at [email protected].

0 commit comments

Comments
 (0)