Gijs pointed out that often permalinks are useful to avoid links becoming stale. This should be relatively straightforward to implement, just need to figure out a good format. Maybe something like:
```
:searchfox:`title <rev={rev}:{path}>`
```
This would then link to:
`https://searchfox.org/mozilla-central/rev/{rev}/{path}`
Bug 1780407 Comment 0 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
Gijs pointed out that often permalinks are useful to avoid links becoming stale. This should be relatively straightforward to implement, just need to figure out a good format. Maybe something like:
```
:searchfox:`title <rev={rev}:{path}>`
```
This would then link to:
`https://searchfox.org/mozilla-central/rev/{rev}/{path}`
We probably want to support a generic way of specifying parameters for the case when we want `rev` *and* `source`. This might be useful for future non searchfox roles as well. Maybe:
```
:role:`{title} <{key1}={value1},{key2}={value2},...:{target}>`
```
So with :searchfox: with source *and* rev, it would be:
```
:searchfox:`title <source={source},rev={rev}:{path}>`
```