@@ -149,45 +149,45 @@ A basic comparison of code looks like:
149149
150150    {{</* tabpane text=true */>}} 
151151    {{</* tab header="Java" */>}} 
152-     {{</* gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L26-L27" */>}} 
152+     {{</* gh-codeblock path="/ examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L26-L27" */>}} 
153153    {{</* /tab */>}} 
154154    {{</* tab header="Python" */>}} 
155-     {{</* gh-codeblock path="examples/python/tests/getting_started/first_script.py#L18-L19" */>}} 
155+     {{</* gh-codeblock path="/ examples/python/tests/getting_started/first_script.py#L18-L19" */>}} 
156156    {{</* /tab */>}} 
157157    {{</* tab header="CSharp" */>}} 
158-     {{</* gh-codeblock path="examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L25-L26" */>}} 
158+     {{</* gh-codeblock path="/ examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L25-L26" */>}} 
159159    {{</* /tab */>}} 
160160    {{</* tab header="Ruby" */>}} 
161-     {{</* gh-codeblock path="examples/ruby/spec/getting_started/first_script.rb#L17-L18" */>}} 
161+     {{</* gh-codeblock path="/ examples/ruby/spec/getting_started/first_script.rb#L17-L18" */>}} 
162162    {{</* /tab */>}} 
163163    {{</* tab header="JavaScript" */>}} 
164-     {{</* gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L22-L23" */>}} 
164+     {{</* gh-codeblock path="/ examples/javascript/test/getting_started/firstScript.spec.js#L22-L23" */>}} 
165165    {{</* /tab */>}} 
166166    {{</* tab header="Kotlin" */>}} 
167-     {{</* gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L31-L32" */>}} 
167+     {{</* gh-codeblock path="/ examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L31-L32" */>}} 
168168    {{</* /tab */>}} 
169169    {{</* /tabpane */>}} 
170170
171171Which looks like this:
172172
173173{{< tabpane text=true >}}
174174{{< tab header="Java" >}}
175- {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L26-L27" >}}
175+ {{< gh-codeblock path="/ examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L26-L27" >}}
176176{{< /tab >}}
177177{{< tab header="Python" >}}
178- {{< gh-codeblock path="examples/python/tests/getting_started/first_script.py#L18-L19" >}}
178+ {{< gh-codeblock path="/ examples/python/tests/getting_started/first_script.py#L18-L19" >}}
179179{{< /tab >}}
180180{{< tab header="CSharp" >}}
181- {{< gh-codeblock path="examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L25-L26" >}}
181+ {{< gh-codeblock path="/ examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L25-L26" >}}
182182{{< /tab >}}
183183{{< tab header="Ruby" >}}
184- {{< gh-codeblock path="examples/ruby/spec/getting_started/first_script.rb#L17-L18" >}}
184+ {{< gh-codeblock path="/ examples/ruby/spec/getting_started/first_script.rb#L17-L18" >}}
185185{{< /tab >}}
186186{{< tab header="JavaScript" >}}
187- {{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L22-L23" >}}
187+ {{< gh-codeblock path="/ examples/javascript/test/getting_started/firstScript.spec.js#L22-L23" >}}
188188{{< /tab >}}
189189{{< tab header="Kotlin" >}}
190- {{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L31-L32" >}}
190+ {{< gh-codeblock path="/ examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L31-L32" >}}
191191{{< /tab >}}
192192{{< /tabpane >}}
193193
@@ -200,11 +200,11 @@ then change the Hugo syntax for the `tab`to use `%` instead of `<` and `>` with
200200    {{</* tabpane text=true */>}} 
201201    {{%/* tab header="Java" */%}} 
202202    1. Start the driver 
203-     {{</* gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L12" */>}} 
203+     {{</* gh-codeblock path="/ examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L12" */>}} 
204204    2. Navigate to a page 
205-     {{</* gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L14" */>}} 
205+     {{</* gh-codeblock path="/ examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L14" */>}} 
206206    3. Quit the driver 
207-     {{</* gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" */>}} 
207+     {{</* gh-codeblock path="/ examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" */>}} 
208208    {{%/* /tab */%}} 
209209    < ... > 
210210    {{</* /tabpane */>}} 
@@ -215,11 +215,11 @@ This produces:
215215{{% tab header="Java" %}}
216216
2172171 .  Start the driver
218-    {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L12" >}}
218+    {{< gh-codeblock path="/ examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L12" >}}
2192192 .  Navigate to a page
220-    {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L14" >}}
220+    {{< gh-codeblock path="/ examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L14" >}}
2212213 .  Quit the driver
222-    {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}}
222+    {{< gh-codeblock path="/ examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}}
223223   {{% /tab %}}
224224   {{< /tabpane >}}
225225
0 commit comments