mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
### What is this PR for?
1. Fix some typos in docs.
2. Remove trailing white spaces for each line.
3. Remove leading white spaces if a line contains no content.
4. Add trailing new line for each file.
### What type of PR is it?
Improvement | Documentation
### Todos
None
### What is the Jira issue?
N/A
### How should this be tested?
Build the doc site and check.
### Screenshots (if appropriate)
N/A
### Questions:
* Does the licenses files need update? *no*
* Is there breaking changes for older versions? *no*
* Does this needs documentation? *no*
Author: Cheng-Yu Hsu <m@cyhsu.me>
Closes #852 from cyhsutw/fix-typos-in-docs and squashes the following commits:
6f5f46b [Cheng-Yu Hsu] fix typos in docs
28 lines
805 B
XML
28 lines
805 B
XML
---
|
|
layout: nil
|
|
title : Atom Feed
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<title>{{ site.title }}</title>
|
|
<link href="{{ site.production_url }}/{{ site.atom_path }}" rel="self"/>
|
|
<link href="{{ site.production_url }}"/>
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
<id>{{ site.production_url }}</id>
|
|
<author>
|
|
<name>{{ site.author.name }}</name>
|
|
<email>{{ site.author.email }}</email>
|
|
</author>
|
|
|
|
{% for post in site.posts %}
|
|
<entry>
|
|
<title>{{ post.title }}</title>
|
|
<link href="{{ site.production_url }}{{ post.url }}"/>
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
<id>{{ site.production_url }}{{ post.id }}</id>
|
|
<content type="html">{{ post.content | xml_escape }}</content>
|
|
</entry>
|
|
{% endfor %}
|
|
|
|
</feed>
|