-# Vaadin Components
+# Vaadin Component
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/vaadin-components?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) or [discuss on the vaadin.com forum](https://vaadin.com/forum/#!/category/9848927/)
| Component | Description |
| --- | --- |
-| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) · [Examples](http://vaadin.github.io/components-examples/vaadin-grid/) · [API](http://vaadin.github.io/components-apidoc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
+| [<**vaadin-grid**>](https://github.com/vaadin/vaadin-grid) · [Examples](../../vaadin-grid/demo) · [API](../doc/#vaadin-grid) | Data grid for showing large amounts of tabular data. |
### Quickstart
- [Data generated on-the-fly](http://jsfiddle.net/jounik/tvk1235r/)
- [JSON data from a URL](http://jsfiddle.net/jounik/tLour4gv/)
-
### Installation
We offer three ways to use Vaadin Components in your project: Bower, CDN and ZIP archive. The only difference between the options is the URL you use to import the necessary files into your HTML page.
xhr.onload = function (e) {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
- readme.innerHTML = marked(xhr.responseText);
+ readme.innerHTML = xhr.responseText;
[].forEach.call(readme.querySelectorAll("pre"), function(pre) {
var code = document.createElement("code");
code.innerHTML = pre.innerHTML;