@@ -149,45 +149,45 @@ A basic comparison of code looks like:
149
149
150
150
{{</* tabpane text=true */>}}
151
151
{{</* 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" */>}}
153
153
{{</* /tab */>}}
154
154
{{</* 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" */>}}
156
156
{{</* /tab */>}}
157
157
{{</* 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" */>}}
159
159
{{</* /tab */>}}
160
160
{{</* 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" */>}}
162
162
{{</* /tab */>}}
163
163
{{</* 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" */>}}
165
165
{{</* /tab */>}}
166
166
{{</* 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" */>}}
168
168
{{</* /tab */>}}
169
169
{{</* /tabpane */>}}
170
170
171
171
Which looks like this:
172
172
173
173
{{< tabpane text=true >}}
174
174
{{< 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" >}}
176
176
{{< /tab >}}
177
177
{{< 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" >}}
179
179
{{< /tab >}}
180
180
{{< 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" >}}
182
182
{{< /tab >}}
183
183
{{< 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" >}}
185
185
{{< /tab >}}
186
186
{{< 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" >}}
188
188
{{< /tab >}}
189
189
{{< 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" >}}
191
191
{{< /tab >}}
192
192
{{< /tabpane >}}
193
193
@@ -200,11 +200,11 @@ then change the Hugo syntax for the `tab`to use `%` instead of `<` and `>` with
200
200
{{</* tabpane text=true */>}}
201
201
{{%/* tab header="Java" */%}}
202
202
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" */>}}
204
204
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" */>}}
206
206
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" */>}}
208
208
{{%/* /tab */%}}
209
209
< ... >
210
210
{{</* /tabpane */>}}
@@ -215,11 +215,11 @@ This produces:
215
215
{{% tab header="Java" %}}
216
216
217
217
1 . 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" >}}
219
219
2 . 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" >}}
221
221
3 . 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" >}}
223
223
{{% /tab %}}
224
224
{{< /tabpane >}}
225
225
0 commit comments