Skip to content
Closed
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: 10 additions & 0 deletions content/docs/andaman/andax.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,16 @@ let latest_tag = forgejo_tag("forgejo.ellis.link", "continuwuation/continuwuity"
let latest_commit = forgejo_commit("forgejo.ellis.link", "continuwuation/continuwuity");
// WARN: There is no `forgejo_rawfile()`.

// Google Source hosts different projects at subdomains
let googlesource_latest = googlesource("go.googlesource.com/go");
let googlesource_tag_latest = googlesource_tag("go.googlesource.com/go");
let googlesource_commit_latest = googlesource_commit("go.googlesource.com/go");
let googlesource_readme = googlesource_rawfile(
"chromium.googlesource.com/chromium/src",
"main",
"tools/symsrc/source_index.py",
);

// Others
let pypi_latest = pypi("example");
let max_stable_version = crates("anda");
Expand Down