feat(marketing): add security bug bounty policy (#29)

This commit is contained in:
hampus-fluxer
2026-01-05 14:28:04 +01:00
committed by GitHub
parent 81402413f1
commit a9da71c7d7
48 changed files with 902 additions and 343 deletions

View File

@@ -835,6 +835,21 @@ pub fn render_table_without_outer_pipes_test() {
|> should.equal(expected)
}
pub fn render_single_column_table_test() {
let markdown =
"| In-scope domains |\n|------------------|\n| fluxer.gg |\n| fluxer.gift |\n| fluxerapp.com |"
let expected =
"<table class=\"border-collapse border border-gray-300 w-full my-4\">\n<thead>\n<tr>\n<th class=\"border border-gray-300 px-4 py-2 bg-gray-50 font-semibold\">In-scope domains</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td class=\"border border-gray-300 px-4 py-2\">fluxer.gg</td>\n</tr>\n<tr>\n<td class=\"border border-gray-300 px-4 py-2\">fluxer.gift</td>\n</tr>\n<tr>\n<td class=\"border border-gray-300 px-4 py-2\">fluxerapp.com</td>\n</tr>\n</tbody>\n</table>"
render_md.render(
markdown,
"https://example.com",
locale.EnUS,
empty_help_data(),
)
|> should.equal(expected)
}
pub fn render_email_link_test() {
render_md.render(
"Contact us at privacy@fluxer.app",