diff --git a/_episodes/05-TriggerObj.md b/_episodes/05-TriggerObj.md
index 89ceeb9..e8dd8ea 100644
--- a/_episodes/05-TriggerObj.md
+++ b/_episodes/05-TriggerObj.md
@@ -9,7 +9,7 @@ objectives:
---
> ## MiniAOD
-> In the [efficiency measurement Ex.]({{% link _episodes/04-HLT_efficiency.md% | relative_url}}), we performed a simple efficiency measurement using the `TriggerResults` product in a MiniAOD file and a NanoAOD file.
+> In the [efficiency measurement Ex.]({{ page.root }}{% link _episodes/04-HLT_efficiency.md% }), we performed a simple efficiency measurement using the `TriggerResults` product in a MiniAOD file and a NanoAOD file.
> Sometimes, we want to know what is the exact object reconstructed and used in the HLT path.
> This is what `TriggerObjectStandAloneCollection` contains - the actual physics objects reconstructed at the HLT.
>
@@ -24,9 +24,9 @@ objectives:
> process.singleMuTrigAnalyzerMiniAOD.triggerName = cms.untracked.string("HLT_IsoMu24_v2")
> ~~~
> {: .language-python}
-> The `SingleMuTrigAnalyzerMiniAOD.cc` analyzer is longer and more complicated than the one in [efficiency measurement Ex.]({{% link _episodes/04-HLT_efficiency.md% | relative_url}}), and we will discuss it not only in this exercise, but also in two others that follow. So don't worry if some parts look somewhat mysterious first.
+> The `SingleMuTrigAnalyzerMiniAOD.cc` analyzer is longer and more complicated than the one in [efficiency measurement Ex.]({{ page.root }}{% link _episodes/04-HLT_efficiency.md% }), and we will discuss it not only in this exercise, but also in two others that follow. So don't worry if some parts look somewhat mysterious first.
>
-> Similarly to [efficiency measurement Ex.]({{% link _episodes/04-HLT_efficiency.md% | relative_url}}), in line 129 the name of the HLT path (`triggerName_`) is used to retrieve the corresponding index (`triggerIndex`):
+> Similarly to [efficiency measurement Ex.]({{ page.root }}{% link _episodes/04-HLT_efficiency.md% }), in line 129 the name of the HLT path (`triggerName_`) is used to retrieve the corresponding index (`triggerIndex`):
> ~~~
> const unsigned int triggerIndex(hltConfig_.triggerIndex(triggerName_));
> ~~~