Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pad [2024/04/17 17:02] – melon | pad [2024/11/17 15:05] (current) – [File Types] melon | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== MelonLand | + | ====== MelonLand |
The MelonLand pad is a free notepad powered by etherpad that everyone can use. It allows you to create text documents that you can access via a link and edit with others (like a google doc). As you type on the pad you'll see everyone' | The MelonLand pad is a free notepad powered by etherpad that everyone can use. It allows you to create text documents that you can access via a link and edit with others (like a google doc). As you type on the pad you'll see everyone' | ||
Line 5: | Line 5: | ||
- Public pads can be edited by everyone with the link - https:// | - Public pads can be edited by everyone with the link - https:// | ||
- Community pads can only be edited by forum members - https:// | - Community pads can only be edited by forum members - https:// | ||
- | |||
- | Everything written in the community pads is instantly published to https:// | ||
Line 17: | Line 15: | ||
* https:// | * https:// | ||
* https:// | * https:// | ||
+ | |||
+ | ===== Making New Pages ===== | ||
+ | Creating a new page is easy, just enter its name in the text box at the top and click "Make or Open a page", if the page already exists it will open it for you, if it does not yet exist it will create it and open it for you! | ||
+ | |||
+ | When linking to a page in your html code just use its name in the href! | ||
+ | |||
+ | ===== Editors and Timeline ===== | ||
+ | Hover over text to see who wrote it! Everyone is able to set a unique color to highlight their edits; if you find this hard to read you can hide it using the cog menu. | ||
+ | |||
+ | Every edit on the pads is connected to a forum account and can be followed through time using the timeline tab, so you can see all past edits. You can use the snapshot feature to save a freeze-frame of a a pad, then even if the pad is changed you can easily return to your snapshoted version of the pad! | ||
===== Images and Media ===== | ===== Images and Media ===== | ||
There is no image or media hosting on the pad, but your welcome to hotlink media from other hosts such as [[nekoweb|nekoweb]] or [[neocities|neocities]]. Images are automatically proxied through the melonland image server to ensure they load fast regardless of where they are from! | There is no image or media hosting on the pad, but your welcome to hotlink media from other hosts such as [[nekoweb|nekoweb]] or [[neocities|neocities]]. Images are automatically proxied through the melonland image server to ensure they load fast regardless of where they are from! | ||
- | ===== Animations ===== | + | ===== Animations |
- | Most Melonking.net and Melonland Forum animations are available as classes on every page! Just make sure your page has a < | + | Most Melonking.net and Melonland Forum animations are available as classes on every page! |
| Class | What it does | | | Class | What it does | | ||
| .spin | Makes things spin | | | .spin | Makes things spin | | ||
Line 36: | Line 44: | ||
| .wiggle | GifyPet wiggle on hover | | | .wiggle | GifyPet wiggle on hover | | ||
+ | MoMG Picture frames can also be used by default, just wrap your image in a frame div/span like so: | ||
+ | <div class=" | ||
+ | **.picture-frame-1** to **.picture-frame-5** are supported and will offer different sizes and colors of frame. | ||
===== Fonts ===== | ===== Fonts ===== | ||
- | All forum fonts are supported by default on every page with a < | + | All forum fonts are supported by default on every page |
* wingdings | * wingdings | ||
* pixel basiic | * pixel basiic | ||
Line 52: | Line 63: | ||
* Comic Sans MS | * Comic Sans MS | ||
* MS PGothic Okato | * MS PGothic Okato | ||
+ | |||
+ | ===== File Types ===== | ||
+ | The Everyone Site supports some pages with file types e.g. if you title your page " | ||
+ | |||
+ | The supported file types are: | ||
+ | * .css - Processed as a CSS Style sheet | ||
+ | * .js - Processed as a JavaScript file | ||
+ | * .txt - Processed as a plain text file | ||
+ | * .xml - Processed as a plaintext XML file | ||
+ | * .x3d - Processed as a plaintext X3D file | ||
+ | * .json - Processed as a plaintext JSON file | ||
+ | * .jpg - Processed as a JPEG image | ||
+ | * .gif - Processed as a GIF image | ||
+ | * .png - Processed as a PNG image | ||
+ | |||
+ | ===== API ===== | ||
+ | You can call **? | ||
+ | |||
+ | Currently it supports 3 API calls: (Everything returns JSON data) | ||
+ | * texts - returns an array of text on the page | ||
+ | * links - returns an array of all text and urls of links | ||
+ | * images - returns an array of all image urls on the page | ||
+ | |||
+ | You can use the target= request to limit the api to part of a page using a CSS selector - for example: | ||
+ | < | ||
+ | https:// | ||
+ | # This will return all the text within links on the homepage. | ||
+ | |||
+ | https:// | ||
+ | # This will return all the links and urls in the community links list (useful if you want to embed them in your own site) | ||
+ | |||
+ | https:// | ||
+ | # This will return the urls of every image in the dance party! | ||
+ | </ | ||
+ | |||