Skip to content
Snippets Groups Projects
Commit 08115207 authored by TheMainOne's avatar TheMainOne
Browse files

Fix formatting

parent aa5026a9
No related branches found
No related tags found
No related merge requests found
......@@ -7,66 +7,66 @@ First, let's start off with the naming conventions. We use the service's name as
To start, you'll have to fork the [ReverseEagle Developers Git Repo](https://forge.tedomum.net/ReverseEagle/developers). After you've done that, clone it to your PC.
When writing a new page, you have to include these lines:
>---
>
>product: Google Docs
>
>type: "Online Collaborative Text Editor"
>
>layout: replace
>
>---
```md
---
product: Google Docs
type: "Online Collaborative Text Editor"
layout: replace
---
```
Now, you have to describe the tool being replaced, keeping the example above, Google Docs:
># Google Docs
>
>Google Docs, an online collaborative text editor.
```md
# Google Docs
Google Docs, an online collaborative text editor.
```
After describing the tool being replaced, you need to include an alternative, for example, Etherpad:
>## Etherpad
>
>An open source alternative to Google Docs.
```md
## Etherpad
An open source alternative to Google Docs.
```
Now you have to write the infobox for your replacement tool, in our example, we used Etherpad, so here is an example of an infobox for Etherpad:
>{% infobox %}
>
>- **Website**: [Etherpad.org](https://etherpad.org/)
>
>- **Source Code**: [GitHub](https://github.com/ether/etherpad-lite/)
>
>- **License**: [APACHE V2](https://github.com/ether/etherpad-lite/blob/develop/LICENSE)
>
>- **Instance List**: [GitHub Wiki Page](https://github.com/ether/etherpad-lite/wiki/Sites-that-run-Etherpad-Lite)
>
>{% endinfobox %}
```md
{% infobox %}
- **Website**: [Etherpad.org](https://etherpad.org/)
- **Source Code**: [GitHub](https://github.com/ether/etherpad-lite/)
- **License**: [APACHE V2](https://github.com/ether/etherpad-lite/blob/develop/LICENSE)
- **Instance List**: [GitHub Wiki Page](https://github.com/ether/etherpad-lite/wiki/Sites-that-run-Etherpad-Lite)
{% endinfobox %}
```
After you've finished, your markdown file should look like this:
>---
>
>product: Google Docs
>
>type: "Online Collaborative Text Editor"
>
>layout: replace
>
>---
># Google Docs
>
>Google Docs, an online collaborative text editor.
>
>## Etherpad
>
>An open source alternative to Google Docs.
>
>{% infobox %}
>
>- **Website**: [Etherpad.org](https://etherpad.org/)
>
>- **Source Code**: [GitHub](https://github.com/ether/etherpad-lite/)
>
>- **License**: [APACHE V2](https://github.com/ether/etherpad-lite/blob/develop/LICENSE)
>
>- **Instance List**: [GitHub Wiki Page](https://github.com/ether/etherpad-lite/wiki/Sites-that-run-Etherpad-Lite)
>
>{% endinfobox %}
```md
---
product: Google Docs
type: "Online Collaborative Text Editor"
layout: replace
---
# Google Docs
Google Docs, an online collaborative text editor.
## Etherpad
An open source alternative to Google Docs.
{% infobox %}
- **Website**: [Etherpad.org](https://etherpad.org/)
- **Source Code**: [GitHub](https://github.com/ether/etherpad-lite/)
- **License**: [APACHE V2](https://github.com/ether/etherpad-lite/blob/develop/LICENSE)
- **Instance List**: [GitHub Wiki Page](https://github.com/ether/etherpad-lite/wiki/Sites-that-run-Etherpad-Lite)
{% endinfobox %}
```
After you're finished writing your infoboxes, `git commit` your changes, add a descriptive commit message.
Once you've done that, `git push` your changes, wait a minute or two, then add a merge request to the [ReverseEagle Developers Git Repo here](https://forge.tedomum.net/ReverseEagle/developers/-/merge_requests)
......@@ -78,55 +78,44 @@ Sometimes, you don't have to write everything from scratch. You just want to add
To add an example, you just have to describe your software and write an infobox. For this example, we'll be adding an alternative to Google Docs, named Cryptpad.
To get started, you have to fork the [ReverseEagle Developers Git Repo](https://forge.tedomum.net/ReverseEagle/developers), then clone it to your computer. Navigate to the "`replace`" folder in the new folder on your computer, then add your changes to the product you wish to replace, in this case, "`Google-Docs.md`".
>## Cryptpad
>
>An end-to-end encrypted, zero-knowledge, collaborative document editor.
>
>{% infobox %}
>
>- **Website**: [Cryptpad.fr](https://cryptpad.fr)
>
>- **Source code**: [Github](https://github.com/xwiki-labs/cryptpad/)
>
>- **License**: [AGPLv3](https://github.com/xwiki-labs/cryptpad/blob/main/LICENSE)
>
>- **Instance list**: [GitHub Wiki Page](https://github.com/xwiki-labs/cryptpad/wiki/Public-instances)
>
>{% endinfobox %}
```md
## Cryptpad
An end-to-end encrypted, zero-knowledge, collaborative document editor.
{% infobox %}
- **Website**: [Cryptpad.fr](https://cryptpad.fr)
- **Source code**: [Github](https://github.com/xwiki-labs/cryptpad/)
- **License**: [AGPLv3](https://github.com/xwiki-labs/cryptpad/blob/main/LICENSE)
- **Instance list**: [GitHub Wiki Page](https://github.com/xwiki-labs/cryptpad/wiki/Public-instances)
{% endinfobox %}
```
Once you're done, it should look something like this:
>## Etherpad
>
>An open source alternative to Google Docs.
>
>{% infobox %}
>
>- **Website**: [Etherpad.org](https://etherpad.org/)
>
>- **Source Code**: [GitHub](https://github.com/ether/etherpad-lite/)
>
>- **License**: [APACHE V2](https://github.com/ether/etherpad-lite/blob/develop/LICENSE)
>
>- **Instance List**: [GitHub Wiki Page](https://github.com/ether/etherpad-lite/wiki/Sites-that-run-Etherpad-Lite)
>
>{% endinfobox %}
>
>## Cryptpad
>
>An end-to-end encrypted, zero-knowledge, collaborative document editor.
>
>{% infobox %}
>
>- **Website**: [Cryptpad.fr](https://cryptpad.fr)
>
>- **Source code**: [Github](https://github.com/xwiki-labs/cryptpad/)
>
>- **License**: [AGPLv3](https://github.com/xwiki-labs/cryptpad/blob/main/LICENSE)
>
>- **Instance list**: [GitHub Wiki Page](https://github.com/xwiki-labs/cryptpad/wiki/Public-instances)
>
>{% endinfobox %}
```md
## Etherpad
An open source alternative to Google Docs.
{% infobox %}
- **Website**: [Etherpad.org](https://etherpad.org/)
- **Source Code**: [GitHub](https://github.com/ether/etherpad-lite/)
- **License**: [APACHE V2](https://github.com/ether/etherpad-lite/blob/develop/LICENSE)
- **Instance List**: [GitHub Wiki Page](https://github.com/ether/etherpad-lite/wiki/Sites-that-run-Etherpad-Lite)
{% endinfobox %}
## Cryptpad
An end-to-end encrypted, zero-knowledge, collaborative document editor.
{% infobox %}
- **Website**: [Cryptpad.fr](https://cryptpad.fr)
- **Source code**: [Github](https://github.com/xwiki-labs/cryptpad/)
- **License**: [AGPLv3](https://github.com/xwiki-labs/cryptpad/blob/main/LICENSE)
- **Instance list**: [GitHub Wiki Page](https://github.com/xwiki-labs/cryptpad/wiki/Public-instances)
{% endinfobox %}
```
After you're finished writing your infoboxes, `git commit` your changes, add a descriptive commit message.
Once you've done that, `git push` your changes, wait a minute or two, then add a merge request to the [ReverseEagle Developers Git Repo here](https://forge.tedomum.net/ReverseEagle/developers/-/merge_requests)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment