> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Editor ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-urls-v2/editor/introduction.md ## Article Content: # Introduction With the Editor API, you can retrieve the relevant URLs to manage redirects to the site editor and the editor preview. Changes made to the site's editor aren't visible to site visitors until they are published. Wix supports 3 editors for their sites: - **Wix Editor**: The classic Wix editor. - **Wix Studio**: Wix's editor built for agencies and enterprises. - **Editor X**: Deprecated, sunset expected by July 1, 2024. ## Before you begin It’s important to note the following points before starting to code: - If an app that includes an embedded script extension is installed on the site, it won't be displayed in the preview. ## Use cases - Redirect to the site editor. - Redirect to preview the latest changes to the site before publishing. ## Import statement To use the wix-urls.v2 API, import `editor` from wix-urls.v2: ```js import { editor } from 'wix-urls.v2'; ```