Skip to content

Commit 3ed5525

Browse files
committed
(refs gitbucket#665)Fix markdown format
1 parent 855d1e1 commit 3ed5525

File tree

8 files changed

+19
-15
lines changed

8 files changed

+19
-15
lines changed

doc/activity.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
Activity Timeline
2+
========
13
GitBucket records several types of user activity to ```ACTIVITY``` table. Activity types are shown below:
24

35
type | message | additional information

doc/auto_update.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Automatic Schema Updating
2-
1+
Automatic Schema Updating
2+
========
33
GitBucket uses H2 database to manage project and account data. GitBucket updates database schema automatically in the first run after the upgrading.
44

55
To release a new version of GitBucket, add the version definition to the [servlet.AutoUpdate](https://github.com/takezoe/gitbucket/blob/master/src/main/scala/servlet/AutoUpdateListener.scala) at first.

doc/comment_action.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# About Action in Issue Comment
2-
1+
About Action in Issue Comment
2+
========
33
After the issue creation at GitBucket, users can add comments or close it.
44
The details are saved at ```ISSUE_COMMENT``` table.
55

doc/directory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Directory Structure
2-
1+
Directory Structure
2+
========
33
GitBucket persists all data into __HOME/.gitbucket__ in default (In 1.9 or before, HOME/gitbucket is default).
44

55
This directory has following structure:

doc/how_to_run.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# How to run from the source tree
1+
How to run from the source tree
2+
========
23

34
for Testers
45
--------

doc/notification.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Notification Email
1+
Notification Email
2+
========
23

34
GitBucket sends email to target users by enabling the notification email by an administrator.
45

doc/readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Developer's Guide
2-
1+
Developer's Guide
2+
========
33
* [How to run from source tree](how_to_run.md)
44
* [Directory Structure](directory.md)
5-
* [Mapping and Validation](mapping_and_validation.md)
6-
* [Authentication in Controller](authentication.md)
7-
* [About Action in Issue Comment](comment_actionb.md)
5+
* [Mapping and Validation](validation.md)
6+
* Authentication in Controller (not yet)
7+
* [About Action in Issue Comment](comment_action.md)
88
* [Activity Types](activity.md)
99
* [Notification Email](notification.md)
1010
* [Automatic Schema Updating](auto_update.md)

doc/mapping_and_validation.md renamed to doc/validation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Mapping and Validation
2-
1+
Mapping and Validation
2+
========
33
GitBucket uses [scalatra-forms](https://github.com/takezoe/scalatra-forms) to validate request parameters and map them to the scala object. This is inspired by Play2 form mapping / validation.
44

55
At first, define the mapping as following:

0 commit comments

Comments
 (0)