Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/net.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ The `"sanitisedContent"` field of `EmailNotificationResponse` object shows how N
public Dictionary<string, Dictionary<string, string>> sanitisedContent;
{
"name", {
"unsanitised", "Anne Example, now [click this evil link](https://evil.link)"
"unsanitised", "Anne Example, now [click this evil link](https://evil.link)",
"sanitised", "Anne Example, now \[click this evil link\]\(\)"
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/node.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ The `"sanitised_content"` field of `response` shows how Notify has sanitised the
```javascript
{
"name": {
"unsanitised": "Anne Example, now [click this evil link](https://evil.link)"
"sanitised": "Anne Example, now \[click this evil link\]\(\)\"
"unsanitised": "Anne Example, now [click this evil link](https://evil.link)",
"sanitised": "Anne Example, now \[click this evil link\]\(\)"
}
}

Expand Down
2 changes: 1 addition & 1 deletion source/python.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ The `"sanitised_content"` field of `response` shows how Notify has sanitised the
```python
{
"name": {
"unsanitised": "Anne Example, now [click this evil link](https://evil.link)"
"unsanitised": "Anne Example, now [click this evil link](https://evil.link)",
"sanitised": "Anne Example, now \[click this evil link\]\(\)"
}
}
Expand Down
4 changes: 2 additions & 2 deletions source/rest-api.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -354,8 +354,8 @@ The `"sanitised_content"` field of `response` shows how Notify has sanitised the
{
"sanitised_content": {
"name": {
"unsanitised": "Anne Example, now [click this evil link](https://evil.link)"
"sanitised": "Anne Example, now \[click this evil link\]\(\)\"
"unsanitised": "Anne Example, now [click this evil link](https://evil.link)",
"sanitised": "Anne Example, now \[click this evil link\]\(\)"
}
}
}
Expand Down