default to intro, and rename headers to match side links

This commit is contained in:
mDuo13
2014-05-13 10:35:59 -07:00
parent f0c2941fee
commit 6a1985da7b
4 changed files with 11 additions and 9 deletions

View File

@@ -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">

View File

@@ -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).

View File

@@ -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.

View File

@@ -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: