+
-| Name | Framework | Try it |
-|------------------|----------------|-----------|
-| [Tic-Tac-Toe-GUI](https://github.com/JesterOrNot/Tic-Tac-Toe-GUI) | Kivy | [](https://gitpod.io/#https://github.com/JesterOrNot/Tic-Tac-Toe-GUI) |
-| [Pong](https://github.com/JesterOrNot/Pong) | Kivy | [](https://gitpod.io/#https://github.com/JesterOrNot/Pong) |
-| [Gitpod-PyQt](https://github.com/gitpod-io/Gitpod-PyQt) | PyQt | [](https://gitpod.io/#https://github.com/gitpod-io/Gitpod-PyQt) |
+| Name | Framework | Try it |
+| ----------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------- |
+| [Tic-Tac-Toe-GUI](https://github.com/JesterOrNot/Tic-Tac-Toe-GUI) | Kivy | [](https://gitpod.io/#https://github.com/JesterOrNot/Tic-Tac-Toe-GUI) |
+| [Pong](https://github.com/JesterOrNot/Pong) | Kivy | [](https://gitpod.io/#https://github.com/JesterOrNot/Pong) |
+| [Gitpod-PyQt](https://github.com/gitpod-io/Gitpod-PyQt) | PyQt | [](https://gitpod.io/#https://github.com/gitpod-io/Gitpod-PyQt) |
## Debugging
+
Here is a quick clip on how to automatically configure debugging for Python!

So, basically in this video we:
+
1. First, open the Python file that we want to debug
2. Then, go to the debug menu and select "Add Configuration..."
3. Next, in the dropdown choose "Python"
@@ -127,25 +137,26 @@ So, basically in this video we:
You can also create the Python debug configuration file manually
To start debugging your Python application in Gitpod, please create a new directory called `.theia/`, and inside add a file called `launch.json`, finally, add the following to it:
+
```json
{
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Python: Current File",
- "type": "python",
- "request": "launch",
- "program": "${file}",
- "console": "internalConsole"
- }
- ]
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Python: Current File",
+ "type": "python",
+ "request": "launch",
+ "program": "${file}",
+ "console": "internalConsole"
+ }
+ ]
}
```
+
Then, simply open the Python file you want to debug, open the Debug panel (in the left vertical toolbar, click the icon with the crossed-out-spider), and click the green "Run" button.
-
To see a basic repository with Python debugging enabled, please check out [gitpod-io/Gitpod-Python-Debug](https://github.com/gitpod-io/Gitpod-Python-Debug):
[](https://gitpod.io/#https://github.com/gitpod-io/Gitpod-Python-Debug)
diff --git a/src/docs/languages/ruby.md b/src/docs/languages/ruby.md
index 11013e3a3..d955748bb 100644
--- a/src/docs/languages/ruby.md
+++ b/src/docs/languages/ruby.md
@@ -11,7 +11,7 @@ To change the default Ruby version, you can simply run `rvm use 2.5 --default` i
Here are a few Ruby example projects that are already automated with Gitpod:
-
+
Repository | Description | Try it
---------|----------|---------
diff --git a/src/docs/languages/rust.md b/src/docs/languages/rust.md
index bb491235c..c3937b99f 100644
--- a/src/docs/languages/rust.md
+++ b/src/docs/languages/rust.md
@@ -32,7 +32,7 @@ which will set the required Rust version and if you commit the file into source
Here are a few Rust example projects that are already automated with Gitpod:
-
+
| Repository | Description | Try it |
|---------|------------|-----|
diff --git a/src/docs/languages/vue.md b/src/docs/languages/vue.md
index 3a0ea87d6..93134c054 100644
--- a/src/docs/languages/vue.md
+++ b/src/docs/languages/vue.md
@@ -6,7 +6,7 @@ To work with Vue.js in Gitpod, you will need to properly configure your reposito
Here are a few Vue.js example projects that are already automated with Gitpod:
-
+
| Repository | Description | Try it |
|------------|-------------|--------|
diff --git a/src/styles/normalize.ts b/src/styles/normalize.ts
index e90d218ad..cbef7be66 100644
--- a/src/styles/normalize.ts
+++ b/src/styles/normalize.ts
@@ -432,6 +432,11 @@ export default `
}
}
+ .language-examples td,
+ .language-examples tr {
+ font-size: 0.915rem;
+ }
+
/* --------------------------------------------- */
/* ----- Utils ----- */
/* --------------------------------------------- */