mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 03:35:51 +00:00
default to intro, and rename headers to match side links
This commit is contained in:
@@ -63,7 +63,7 @@ mixpanel.init("132d42885e094171f34467fc54da6fab");
|
||||
<!-- Initializer -->
|
||||
<script>
|
||||
Flatdoc.run({
|
||||
fetcher: Flatdoc.file('websocket_api.md')
|
||||
fetcher: Flatdoc.file('intro.md')
|
||||
});
|
||||
</script>
|
||||
|
||||
@@ -108,6 +108,12 @@ mixpanel.init("132d42885e094171f34467fc54da6fab");
|
||||
|
||||
<div class='content-root'>
|
||||
<div class='menubar'>
|
||||
|
||||
<ul class='subnav section'>
|
||||
<li><a href='#' onclick="Flatdoc.run({fetcher: Flatdoc.file('intro.md')});">Introduction</a></li>
|
||||
<li><a href='#' onclick="Flatdoc.run({fetcher: Flatdoc.file('ripplerest_api.md')});">Ripple-REST API</a></li>
|
||||
<li><a href='#' onclick="Flatdoc.run({fetcher: Flatdoc.file('websocket_api.md')});">Web Sockets API</a></li>
|
||||
</ul>
|
||||
<form class='section'>
|
||||
<label for="syntax_mode">Show Syntax for:</label>
|
||||
<select id="syntax_mode">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Welcome to Ripple #
|
||||
# Introduction #
|
||||
|
||||
Ripple is a decentralized, peer-to-peer network for moving money using cryptographic technology. For more on the big picture, consult [ripple.com](https://ripple.com/) and check out [our blog](https://ripple.com/blog/).
|
||||
|
||||
@@ -6,7 +6,7 @@ To get started using Ripple, you can try running a few calls to retrieve public
|
||||
|
||||
# Ripple Client Applications #
|
||||
|
||||
The official web client for the Ripple Network is available at [https://ripple.com/client/]. You can also try signing up for [Ripple Trade](https://rippletrade.com/), which is still in development. In the future, official downloadable clients will also be available.
|
||||
The official web client for the Ripple Network is available at [https://ripple.com/client/](). You can also try signing up for [Ripple Trade](https://rippletrade.com/), which is still in development. In the future, official downloadable clients will also be available.
|
||||
|
||||
If you intend to act as a gateway, you will probably want to build custom client applications that your customers can use to manage their funds within the Ripple Network. To do that, you will need to integrate against the [Ripple APIs](#ripple-apis).
|
||||
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
# INTRODUCTION #
|
||||
|
||||
`ripple-rest : v1.000`
|
||||
|
||||
## Ripple-REST API ##
|
||||
|
||||
The `ripple-rest` API makes it easy to access the Ripple system via a RESTful web interface. In this section, we will cover the concepts you need to understand, and get you started accessing the API and learning how to use it.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#INTRODUCTION#
|
||||
The Web Socket and JSON-RPC APIs are two methods of communicating with a `rippled` server in the Ripple network. Both APIs use the same JSON data format, although not all features are available on both APIs. Unlike the [Ripple-REST API](https://dev.ripple.com/index.html), the Websocket and JSON-RPC APIs are more difficult to use, but also provide the full power of Ripple.
|
||||
# Web Sockets API #
|
||||
The Web Sockets API and JSON-RPC APIs are two methods of communicating with a `rippled` server in the Ripple network. Both APIs use the same JSON data format, although not all features are available on both APIs. Unlike the [Ripple-REST API](https://dev.ripple.com/index.html), the Websocket and JSON-RPC APIs are more difficult to use, but also provide the full power of Ripple.
|
||||
|
||||
In general, we recommend using Web Sockets, for several reasons:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user