Skip to content
Open
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3031,6 +3031,7 @@ _Full stack web frameworks._
- [uAdmin](https://github.com/uadmin/uadmin) - Fully featured web framework for Golang, inspired by Django.
- [WebGo](https://github.com/naughtygopher/webgo) - A micro-framework to build web apps with handler chaining, middleware, and context injection. With standard library-compliant HTTP handlers (i.e., `http.HandlerFunc`)..
- [Yokai](https://github.com/ankorstore/yokai) - Simple, modular, and observable Go framework for backend applications.
- [G3]((https://github.com/zhitoo/g3)) - G3 is a simple and fast micro web framework, inspired by h3.dev.

Comment on lines +3034 to 3035
Copy link

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Fix malformed Markdown link and place entry alphabetically in Web Frameworks.

  • The link has double parentheses and renders broken.
  • Entries must be alphabetical; “G3” should live in the G… block (after “Fuego” and before “Gin”), not at the end near “Yokai”.

Apply this fix to the link text here (and then relocate the line to the G section):

- [G3]((https://github.com/zhitoo/g3)) - G3 is a simple and fast micro web framework, inspired by h3.dev.
+ [G3](https://github.com/zhitoo/g3) - Simple and fast micro web framework inspired by h3.dev.

Run to confirm uniqueness and placement:


🏁 Script executed:

#!/bin/bash
# Ensure G3 appears once and not already listed elsewhere
rg -nP '^\s*-\s*\[G3\]\(' README.md

# Show surrounding Web Frameworks G-section to place after "Fuego" and before "Gin"
awk '/## Web Frameworks/{flag=1;next}/## Middlewares/{flag=0}flag' README.md | sed -n '/- \[Fuego\]/,/^-\s*\[Gin\]/p'

Length of output: 624


Fix malformed Markdown link and relocate G3 entry in Web Frameworks

  • Remove the extra parentheses and update the description.
  • Move the G3 line from its current position (line 3034) into the Web Frameworks section between Fuego and Gin.
- [G3]((https://github.com/zhitoo/g3)) - G3 is a simple and fast micro web framework, inspired by h3.dev.
+ [G3](https://github.com/zhitoo/g3) - Simple and fast micro web framework inspired by h3.dev.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- [G3]((https://github.com/zhitoo/g3)) - G3 is a simple and fast micro web framework, inspired by h3.dev.
- [G3](https://github.com/zhitoo/g3) - Simple and fast micro web framework inspired by h3.dev.
🤖 Prompt for AI Agents
In README.md around lines 3034-3035, fix the malformed Markdown link and
relocate the G3 entry: remove the extra parentheses to change
"[G3]((https://github.com/zhitoo/g3))" to a proper Markdown link
"[G3](https://github.com/zhitoo/g3)", update the description to something like
"G3 is a simple and fast micro web framework, inspired by h3.dev." (or your
preferred wording), then cut this corrected line and paste it into the Web
Frameworks section between the entries for Fuego and Gin so it appears in the
correct ordering.

**[⬆ back to top](#contents)**

Expand Down
Loading