You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To understand how URL processing works, let's see how %product% processes URLs:
10
+
11
+
```mermaid
12
+
stateDiagram-v2
13
+
direction LR
14
+
RP: Rule processor
15
+
B: Open browser
16
+
state Pipeline {
17
+
O365 --> Unshorten
18
+
Unshorten --> Substitute
19
+
}
20
+
[*] --> Pipeline
21
+
Pipeline --> RP
22
+
RP --> B
23
+
B --> [*]
24
+
```
25
+
26
+
Every time you click on a link, it first goes via a "Pipeline" that makes optional transformations on it. This includes unwrapping Office 365 links, un-shortening URLs, and applying substitutions, all described below.
27
+
28
+
Rule processor then applies rules to the URL and opens the browser based on the rule.
0 commit comments