Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions docs/guide/development-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,16 @@ GEMINI.md # AI assistant context file

Your development loop will look like this:

::: code-group
```text [Python Projects]
**Python Projects**

1. **Prototype:** Use notebooks in `notebooks/` for rapid experimentation
2. **Integrate:** Edit `app/agent.py` to incorporate your logic
3. **Test:** Run the interactive playground with hot-reloading
```

```text [Go Projects]
**Go Projects**

1. **Integrate:** Edit `agent/agent.go` to add tools and logic
2. **Test:** Run the interactive playground to test changes
```
:::

Comment on lines +67 to 77
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While your change fixes the issue of bold text not rendering, it removes the tabbed code-group layout, which was a nice way to organize the information for Python and Go projects. You can likely fix the rendering issue while keeping the tabs by changing the language identifier from text to markdown. This should instruct VitePress to parse the markdown within the code blocks.

Suggested change
**Python Projects**
1. **Prototype:** Use notebooks in `notebooks/` for rapid experimentation
2. **Integrate:** Edit `app/agent.py` to incorporate your logic
3. **Test:** Run the interactive playground with hot-reloading
```
```text [Go Projects]
**Go Projects**
1. **Integrate:** Edit `agent/agent.go` to add tools and logic
2. **Test:** Run the interactive playground to test changes
```
:::
::: code-group
```markdown [Python Projects]
1. **Prototype:** Use notebooks in `notebooks/` for rapid experimentation
2. **Integrate:** Edit `app/agent.py` to incorporate your logic
3. **Test:** Run the interactive playground with hot-reloading
1. **Integrate:** Edit `agent/agent.go` to add tools and logic
2. **Test:** Run the interactive playground to test changes

:::

```bash
# Install dependencies and launch the local playground
Expand Down