转移帮助文档路径,并纳入web服务
This commit is contained in:
@@ -27,7 +27,7 @@ require(['markdownit', 'highlight'], (mdit, hljs) => {
|
||||
},
|
||||
});
|
||||
|
||||
const path = '../md/';
|
||||
const path = '/help/md/';
|
||||
const file = location.hash.slice(1).trim();
|
||||
if (!file) return;
|
||||
fetch(`${path}${file}.md`)
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -206,7 +206,7 @@ class RemoteBookActivity : BaseImportBookActivity<RemoteBookViewModel>(),
|
||||
@Suppress("SameParameterValue")
|
||||
private fun showHelp(fileName: String) {
|
||||
//显示目录help下的帮助文档
|
||||
val mdText = String(assets.open("help/${fileName}.md").readBytes())
|
||||
val mdText = String(assets.open("web/help/md/${fileName}.md").readBytes())
|
||||
showDialogFragment(TextDialog(getString(R.string.help), mdText, TextDialog.Mode.MD))
|
||||
}
|
||||
|
||||
|
||||
@@ -623,7 +623,7 @@ class BookSourceEditActivity :
|
||||
|
||||
private fun showHelp(fileName: String) {
|
||||
//显示目录help下的帮助文档
|
||||
val mdText = String(assets.open("help/${fileName}.md").readBytes())
|
||||
val mdText = String(assets.open("web/help/md/${fileName}.md").readBytes())
|
||||
showDialogFragment(TextDialog(getString(R.string.help), mdText, TextDialog.Mode.MD))
|
||||
}
|
||||
|
||||
|
||||
@@ -147,7 +147,7 @@ class ReplaceEditActivity :
|
||||
@Suppress("SameParameterValue")
|
||||
private fun showHelp(fileName: String) {
|
||||
//显示目录help下的帮助文档
|
||||
val mdText = String(assets.open("help/${fileName}.md").readBytes())
|
||||
val mdText = String(assets.open("web/help/md/${fileName}.md").readBytes())
|
||||
showDialogFragment(TextDialog(getString(R.string.help), mdText, TextDialog.Mode.MD))
|
||||
}
|
||||
|
||||
|
||||
@@ -391,7 +391,7 @@ class RssSourceEditActivity :
|
||||
|
||||
private fun showHelp(fileName: String) {
|
||||
//显示目录help下的帮助文档
|
||||
val mdText = String(assets.open("help/${fileName}.md").readBytes())
|
||||
val mdText = String(assets.open("web/help/md/${fileName}.md").readBytes())
|
||||
showDialogFragment(TextDialog(getString(R.string.help), mdText, TextDialog.Mode.MD))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user