-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: wiki - add toc to wiki pages and rendered md files #7182
Closed
Closed
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
6325510
add toc to wikipages and rendered md files
Cherrg 0a9fb89
move style settings from js to css files
Cherrg 0e08aa9
fix dark theme border color
Cherrg 994bf33
change padding on TOC headlines
Cherrg f60056b
add md and wikifile TOC settings to repository options
Cherrg a9dce7f
handle options on template and update js
Cherrg e971230
Update index.js
Cherrg a889262
add float clear element
Cherrg 77fb621
move TOC settings in app.ini from section 'repository' to 'markdown'
Cherrg c8e7b8a
Merge branch 'master' into gitea_md_wiki_auto_toc
techknowlogick 06238aa
remove german translation
Cherrg c486aca
add configuration flag to set TOC extensions
Cherrg 1417170
Merge branch 'master' into gitea_md_wiki_auto_toc
Cherrg 83e4c6e
Merge branch 'gitea_md_wiki_auto_toc' of github.com:Cherrg/gitea into…
Cherrg 588fcca
move toc beside markdown container on large screens
Cherrg e91b8c5
rename configuration variables 'markdown' to 'markup'
Cherrg 8dd08af
set fixed width on small mobile screens
Cherrg 71e0165
Merge branch 'master' into gitea_md_wiki_auto_toc
Cherrg 21b1f99
Merge branch 'master' into gitea_md_wiki_auto_toc
Cherrg 22b82ff
fix css lint errors
Cherrg 0607c0a
rename migration file
Cherrg e0939ab
Merge branch 'master' into gitea_md_wiki_auto_toc
Cherrg bd83992
git rename migration file to resolve confilcts
Cherrg 9fbb263
Merge branch 'master' into gitea_md_wiki_auto_toc
Cherrg f870a41
Merge branch 'master' into gitea_md_wiki_auto_toc
Cherrg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright 2019 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package migrations | ||
|
||
import ( | ||
"code.gitea.io/gitea/modules/setting" | ||
|
||
"xorm.io/xorm" | ||
) | ||
|
||
func addCanTocOnWikiAndMarkdown(x *xorm.Engine) error { | ||
|
||
type Repository struct { | ||
TocWikiFile bool `xorm:"NOT NULL DEFAULT true"` | ||
TocMarkupAlways bool `xorm:"NOT NULL DEFAULT false"` | ||
TocMarkupByFlag bool `xorm:"NOT NULL DEFAULT true"` | ||
} | ||
|
||
if err := x.Sync2(new(Repository)); err != nil { | ||
return err | ||
} | ||
|
||
if _, err := x.Exec("UPDATE repository SET toc_wiki_file = ?", | ||
setting.Markdown.DefaultTocWikiFile); err != nil { | ||
return err | ||
} | ||
|
||
if _, err := x.Exec("UPDATE repository SET toc_markup_always = ?", | ||
setting.Markdown.DefaultTocMarkupAlways); err != nil { | ||
return err | ||
} | ||
|
||
if _, err := x.Exec("UPDATE repository SET toc_markup_by_flag = ?", | ||
setting.Markdown.DefaultTocMarkupByFlag); err != nil { | ||
return err | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't the check be in setting parsing?