-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Azure AD B2C サンプルのReadMeの誤字修正とcspellの除外設定追加 (#1051) * cspellの除外設定を追加。 * 誤字修正。 --------- Co-authored-by: Fumika Koyama <[email protected]> * アプリケーションアーキテクチャ概要編からコンソールアプリの要件別サンプルにリンクを張る (#1057) * リンクを追加 * 冗長な記載を修正 * documentsのreadmeを最新化する (#1062) * フォルダー構造を修正。 * 「テスト方針」と「画像ファイル」のフォルダー構成を修正。 --------- Co-authored-by: Fumika Koyama <[email protected]> * mkdocs.ymlとドキュメントリリース用のYAMLに設定を追加。 * pngquantをsudoでインストールするよう修正。 * enabledの設定を削除。 * プラグインの記載位置を変更。 * lintエラーに対応。 * BUILD_DOCUMENTS=trueの時にソーシャルカードを生成するよう修正。 * 不要な設定を削除。 * タイトルとロゴのみのソーシャルカードを生成。 * インデントを修正。 * 不要なスペースを削除。 * タイトルのみを表示する。 * アイコンの設定を修正。 * アイコンの設定を削除。 * デフォルトのソーシャルカードのdescriptionを非表示にする。 * 不要なファイルを削除。 * ソーシャルカード内にtitleとdescriptionが入るきるよう修正。 * titleが付いていないページにtitle追加。 * descriptionの文字数を調整。 * descriptionのスペースを調整。 * 「.NET Fw」の表記を修正。 * READMEにソーシャルカードについての説明を追加。 * descriptionが抜けている部分に追記。 * titleとdescriptionを設定するようmarkdownlintのルールを追加。 * 商標ページのdescriptionを修正。 Co-authored-by: tsuna-can-se <[email protected]> * ソーシャルカードの確認方法を修正。 --------- Co-authored-by: Fumika Koyama <[email protected]> Co-authored-by: kentah <[email protected]> Co-authored-by: tsuna-can-se <[email protected]>
- Loading branch information
1 parent
60d2fc8
commit 391639d
Showing
68 changed files
with
174 additions
and
63 deletions.
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
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,37 @@ | ||
|
||
const hasTitleAndDescription = (params, onError) => { | ||
const title_line = params.frontMatterLines.filter((line) => | ||
line.startsWith("title: ") | ||
); | ||
const description_line = params.frontMatterLines.filter((line) => | ||
line.startsWith("description: ") | ||
); | ||
if (title_line.length < 1) { | ||
onError({ | ||
lineNumber: 1, | ||
detail: "Title is not specified", | ||
}); | ||
} else if (title_line.length > 1) { | ||
onError({ | ||
lineNumber: 1, | ||
detail: "Document files are not allowed to specify multiple lists of title", | ||
}); | ||
} else if (description_line.length < 1) { | ||
onError({ | ||
lineNumber: 1, | ||
detail: "Description is not specified", | ||
}); | ||
} else if (description_line.length > 1) { | ||
onError({ | ||
lineNumber: 1, | ||
detail: "Document files are not allowed to specify multiple lists of description", | ||
}); | ||
} | ||
}; | ||
|
||
module.exports = { | ||
names: ["CMD001", "requires-title-and-description"], | ||
description: "All documents should specify title and description", | ||
tags: ["custom"], | ||
function: hasTitleAndDescription, | ||
}; |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
title: 利用規約 | ||
description: AlesInfiny Maris OSS Edition ポータルサイトの利用規約です。 | ||
--- | ||
|
||
# 利用規約 {#top} | ||
|
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
title: 商標 | ||
description: AlesInfiny Maris OSS Edition の商標について説明します。 | ||
--- | ||
|
||
# 商標 {#top} | ||
|
2 changes: 1 addition & 1 deletion
2
...ts/contents/app-architecture/client-side-rendering/csr-architecture-overview.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/app-architecture/client-side-rendering/frontend-architecture.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/app-architecture/client-side-rendering/global-function.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/app-architecture/client-side-rendering/index.md
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
5 changes: 5 additions & 0 deletions
5
...ts/app-architecture/client-side-rendering/test/backend-application/unit-test.md
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 |
---|---|---|
@@ -1 +1,6 @@ | ||
--- | ||
title: CSR 編 - テスト | ||
description: バックエンドアプリケーションのテスト方針について解説します。 | ||
--- | ||
|
||
# 単体テスト ( UT0 ) {#top} |
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 |
---|---|---|
@@ -1 +1,6 @@ | ||
--- | ||
title: コンソール アプリケーション編 | ||
description: コンソールアプリケーションの アーキテクチャについて解説します。 | ||
--- | ||
|
||
# コンソールアプリケーション編 {#top} |
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
2 changes: 1 addition & 1 deletion
2
documents/contents/app-architecture/overview/application-kind.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/app-architecture/overview/application-structure.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/app-architecture/overview/configuration-management.md
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
2 changes: 1 addition & 1 deletion
2
...ure/overview/dotnet-application-processing-system/event-id-management-policy.md
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
2 changes: 1 addition & 1 deletion
2
...ture/overview/dotnet-application-processing-system/exception-handling-policy.md
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
2 changes: 1 addition & 1 deletion
2
...tecture/overview/dotnet-application-processing-system/health-check-necessity.md
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
2 changes: 1 addition & 1 deletion
2
...ontents/app-architecture/overview/dotnet-application-processing-system/index.md
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
2 changes: 1 addition & 1 deletion
2
...ecture/overview/dotnet-application-processing-system/input-validation-policy.md
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
2 changes: 1 addition & 1 deletion
2
...pp-architecture/overview/dotnet-application-processing-system/logging-policy.md
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
2 changes: 1 addition & 1 deletion
2
...ture/overview/dotnet-application-processing-system/message-management-policy.md
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
2 changes: 1 addition & 1 deletion
2
.../overview/dotnet-application-processing-system/transaction-management-policy.md
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
2 changes: 1 addition & 1 deletion
2
...ents/guidebooks/how-to-develop/dotnet/configure-asp-net-core-web-api-project.md
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
2 changes: 1 addition & 1 deletion
2
...ts/guidebooks/how-to-develop/dotnet/configure-asp-net-core-with-vite-project.md
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
2 changes: 1 addition & 1 deletion
2
...contents/guidebooks/how-to-develop/dotnet/configure-integration-test-project.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/guidebooks/how-to-develop/dotnet/create-project-structure.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/guidebooks/how-to-develop/dotnet/create-project.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/guidebooks/how-to-develop/dotnet/create-solution-structure.md
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
2 changes: 1 addition & 1 deletion
2
documents/contents/guidebooks/how-to-develop/dotnet/health-check-api.md
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.