Skip to content
Merged
Show file tree
Hide file tree
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
20 changes: 0 additions & 20 deletions extensions/wikipedia/.eslintrc.json

This file was deleted.

14 changes: 1 addition & 13 deletions extensions/wikipedia/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
{
"printWidth": 120,
"singleQuote": false,
"bracketSpacing": true,
"tabWidth": 2,
"semi": true,
"useTabs": false,
"importOrder": [
"<THIRD_PARTY_MODULES>",
"^@raycast/(.*)$",
"^@/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
"singleQuote": false
}
8 changes: 8 additions & 0 deletions extensions/wikipedia/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Wikipedia Changelog

## [Article navigation] - 2026-08-13

- Add back and forward navigation between opened articles with `[` and `]` shortcuts
- Preserve article history when following in-page links or changing page language
- Update Change Language shortcut to `⌘⇧L` / `Ctrl⇧L`
- Align Open Link, Copy, and Search in Browser shortcuts with Raycast common defaults on macOS and Windows

## [Language improvements] - 2025-05-30

- Fix open article in another language
- Add the ability to delete recent articles

Expand Down
45 changes: 45 additions & 0 deletions extensions/wikipedia/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Wikipedia

Search and read Wikipedia articles from [Raycast](https://raycast.com).

## Features

- **Search Page** — Search articles by title with list or grid view, recent articles, and multi-language support
- **Open Page** — Open a specific article directly in Raycast or your browser
- **Random Page** — Jump to a random Wikipedia article
- **Featured Page** — Open today's featured article
- **AI** — Use `@wikipedia` in Raycast AI to search and cite articles

## Commands

| Command | Description |
| ------------- | --------------------------------------------------- |
| Search Page | Search Wikipedia pages by title |
| Open Page | Open a Wikipedia page in Raycast |
| Random Page | Open a random Wikipedia page in the browser |
| Featured Page | Open today's featured Wikipedia page in the browser |

## Preferences

- **Open In** — Choose whether pages open in Raycast or your browser (default: Raycast)
- **View Type** (Search Page) — List or grid layout for search results

## Development

Requires [Raycast](https://raycast.com), Node.js, and npm.

```bash
npm install
npm run dev
```

Other scripts:

```bash
npm run build # Production build
npm run lint # Lint
```

## License

MIT
4 changes: 4 additions & 0 deletions extensions/wikipedia/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { defineConfig } from "eslint/config";
import raycastConfig from "@raycast/eslint-config";

export default defineConfig([...raycastConfig]);
Loading