From a2504c020b35ffdf80f3ac147c0a1f205d219749 Mon Sep 17 00:00:00 2001 From: Verzatiledev <47317248+VerzatileDev@users.noreply.github.com> Date: Thu, 13 Jun 2024 00:40:16 +0300 Subject: [PATCH] Provide a basic description for each Article / Page The following introduces a description entity for each page on the website. - This is to get a brief short summary about the topic at hand through the linking of a hyperlink. --- docs/Concepts/Concepts.md | 1 + docs/Concepts/ECS/ECS.md | 2 +- docs/Concepts/Inheritance/Inheritance.md | 1 + docs/Concepts/Memory/Memory.md | 1 + docs/Concepts/OOP/OOP.md | 1 + docs/Concepts/Polymorphism/Polymorphism.md | 1 + docs/Concepts/SOLID/SOLID.md | 1 + docs/Engine/Engine.md | 1 + docs/Engine/GameMakerStudio/GameMakerStudio.md | 1 + docs/Engine/Godot/Godot.md | 1 + docs/Engine/Unity/Unity.md | 1 + docs/Engine/UnrealEngine/UnrealEngine.md | 1 + docs/Framework/DirectX/DirectX.md | 1 + docs/Framework/Flutter/Flutter.md | 1 + docs/Framework/Framework.md | 1 + docs/Framework/JUCE/JUCE.md | 1 + docs/Framework/NET/net.md | 1 + docs/Framework/OpenGL/OpenGL.md | 1 + docs/Framework/SFML/SFML.md | 1 + docs/IDE/AdobeDreamWeaver/AdobeDreamWeaver.md | 1 + docs/IDE/IDE.md | 1 + docs/IDE/MonoDevelop/MonoDevelop.md | 1 + docs/IDE/NetBeans/NetBeans.md | 1 + docs/IDE/Notepad++/Notepad++.md | 1 + docs/IDE/Rider/Rider.md | 1 + docs/IDE/VSCode/VSCode.md | 1 + docs/IDE/VisualStudio/ChangeProjectName.md | 1 + docs/IDE/VisualStudio/IncludeDLLs.md | 1 + docs/IDE/VisualStudio/VisualStudio.md | 1 + docs/Language/C#/C#.md | 1 + docs/Language/C++/Addresses.md | 1 + docs/Language/C++/C++.md | 1 + docs/Language/C++/ConstantPointerToConstant.md | 1 + docs/Language/C++/ConstantPointers.md | 1 + docs/Language/C++/Dereferencing.md | 1 + docs/Language/C++/MemberPointers.md | 1 + docs/Language/C++/MultilevelPointers.md | 1 + docs/Language/C++/NullPointers.md | 1 + docs/Language/C++/PointerToConstant.md | 1 + docs/Language/C++/Pointers.md | 1 + docs/Language/C++/RawPointers.md | 1 + docs/Language/C++/References.md | 1 + docs/Language/C++/SmartPointers.md | 1 + docs/Language/C++/VoidPointers.md | 1 + docs/Language/C/C.md | 1 + docs/Language/CSS/CSS.md | 1 + docs/Language/Dart/Dart.md | 1 + docs/Language/GO/GO.md | 1 + docs/Language/HTML/HTML.md | 1 + docs/Language/Haxe/Haxe.md | 1 + docs/Language/JS/JS.md | 1 + docs/Language/Java/Java.md | 1 + docs/Language/Language.md | 1 + docs/Language/Lisp/Lisp.md | 1 + docs/Language/Lua/Lua.md | 1 + docs/Language/Python/Python.md | 1 + docs/Language/Python/Tries.md | 1 + docs/Language/React/React.md | 1 + docs/Language/Ruby/Ruby.md | 1 + docs/Language/Rust/Rust.md | 1 + docs/VersionControl/Git/Git.md | 1 + docs/VersionControl/Git/GitBash.md | 1 + docs/VersionControl/Git/Github.md | 1 + docs/VersionControl/Git/Github/EnterpriseToPersonal.md | 1 + docs/VersionControl/Git/Gitlab.md | 1 + docs/VersionControl/P4V/Helix.md | 1 + docs/VersionControl/P4V/HelixSwarm.md | 1 + docs/VersionControl/P4V/Perforce.md | 1 + docs/VersionControl/PlasticSCM/Plastic.md | 1 + docs/VersionControl/VersionControl.md | 1 + 70 files changed, 70 insertions(+), 1 deletion(-) diff --git a/docs/Concepts/Concepts.md b/docs/Concepts/Concepts.md index c1c68db..b8fa7a0 100644 --- a/docs/Concepts/Concepts.md +++ b/docs/Concepts/Concepts.md @@ -1,6 +1,7 @@ --- layout: default title: Concepts +description: An article dicussing the concept of programming concepts with a definition, use cases and history. Where additional Sub-topics go into the topics of each concept in detail. nav_order: 5 has_children: true --- diff --git a/docs/Concepts/ECS/ECS.md b/docs/Concepts/ECS/ECS.md index cecc21a..a6ae153 100644 --- a/docs/Concepts/ECS/ECS.md +++ b/docs/Concepts/ECS/ECS.md @@ -1,7 +1,7 @@ --- layout: default title: ECS -description: +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Concepts has_children: false diff --git a/docs/Concepts/Inheritance/Inheritance.md b/docs/Concepts/Inheritance/Inheritance.md index 9effa35..64ec0b9 100644 --- a/docs/Concepts/Inheritance/Inheritance.md +++ b/docs/Concepts/Inheritance/Inheritance.md @@ -1,6 +1,7 @@ --- layout: default title: Inheritance +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Concepts has_children: false diff --git a/docs/Concepts/Memory/Memory.md b/docs/Concepts/Memory/Memory.md index 9a26cbc..c0b6363 100644 --- a/docs/Concepts/Memory/Memory.md +++ b/docs/Concepts/Memory/Memory.md @@ -1,6 +1,7 @@ --- layout: default title: Memory +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Concepts has_children: false diff --git a/docs/Concepts/OOP/OOP.md b/docs/Concepts/OOP/OOP.md index 8ebacaf..9796eeb 100644 --- a/docs/Concepts/OOP/OOP.md +++ b/docs/Concepts/OOP/OOP.md @@ -1,6 +1,7 @@ --- layout: default title: OOP +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Concepts has_children: false diff --git a/docs/Concepts/Polymorphism/Polymorphism.md b/docs/Concepts/Polymorphism/Polymorphism.md index 33a4e8d..93b5f0e 100644 --- a/docs/Concepts/Polymorphism/Polymorphism.md +++ b/docs/Concepts/Polymorphism/Polymorphism.md @@ -1,6 +1,7 @@ --- layout: default title: Polymorphism +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Concepts has_children: false diff --git a/docs/Concepts/SOLID/SOLID.md b/docs/Concepts/SOLID/SOLID.md index 2161ad4..6cb8509 100644 --- a/docs/Concepts/SOLID/SOLID.md +++ b/docs/Concepts/SOLID/SOLID.md @@ -1,6 +1,7 @@ --- layout: default title: SOLID +description: An article discussing the concept of SOLID, its principles, types and definitions. Example code provides an overview of the concept by utalizing a coffing making method. nav_order: 1 parent: Concepts has_children: false diff --git a/docs/Engine/Engine.md b/docs/Engine/Engine.md index e7f0699..feb4b3b 100644 --- a/docs/Engine/Engine.md +++ b/docs/Engine/Engine.md @@ -1,6 +1,7 @@ --- layout: default title: Engine +description: An article discussing about the use cases of video game engines, history and definition. nav_order: 4 has_children: true --- diff --git a/docs/Engine/GameMakerStudio/GameMakerStudio.md b/docs/Engine/GameMakerStudio/GameMakerStudio.md index 18b9026..c57da49 100644 --- a/docs/Engine/GameMakerStudio/GameMakerStudio.md +++ b/docs/Engine/GameMakerStudio/GameMakerStudio.md @@ -1,6 +1,7 @@ --- layout: default title: GameMakerStudio +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Engine has_children: false diff --git a/docs/Engine/Godot/Godot.md b/docs/Engine/Godot/Godot.md index 7c28399..1622cae 100644 --- a/docs/Engine/Godot/Godot.md +++ b/docs/Engine/Godot/Godot.md @@ -1,6 +1,7 @@ --- layout: default title: Godot +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Engine has_children: false diff --git a/docs/Engine/Unity/Unity.md b/docs/Engine/Unity/Unity.md index ef5b420..b8a3265 100644 --- a/docs/Engine/Unity/Unity.md +++ b/docs/Engine/Unity/Unity.md @@ -1,6 +1,7 @@ --- layout: default title: Unity +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Engine has_children: false diff --git a/docs/Engine/UnrealEngine/UnrealEngine.md b/docs/Engine/UnrealEngine/UnrealEngine.md index bbc4958..a439752 100644 --- a/docs/Engine/UnrealEngine/UnrealEngine.md +++ b/docs/Engine/UnrealEngine/UnrealEngine.md @@ -1,6 +1,7 @@ --- layout: default title: Unreal Engine +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Engine has_children: false diff --git a/docs/Framework/DirectX/DirectX.md b/docs/Framework/DirectX/DirectX.md index 0e61ac8..4f1b1e6 100644 --- a/docs/Framework/DirectX/DirectX.md +++ b/docs/Framework/DirectX/DirectX.md @@ -1,6 +1,7 @@ --- layout: default title: DirectX +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Framework has_children: false diff --git a/docs/Framework/Flutter/Flutter.md b/docs/Framework/Flutter/Flutter.md index 135e7eb..36521d8 100644 --- a/docs/Framework/Flutter/Flutter.md +++ b/docs/Framework/Flutter/Flutter.md @@ -1,6 +1,7 @@ --- layout: default title: Flutter +description: An article showcasing Flutter, a robust development kit framework. In this comprehensive exploration, we delve into its capabilities, features, and practical applications, offering detailed descriptions and illustrative examples. nav_order: 1 parent: Framework has_children: false diff --git a/docs/Framework/Framework.md b/docs/Framework/Framework.md index 3232776..39c5d51 100644 --- a/docs/Framework/Framework.md +++ b/docs/Framework/Framework.md @@ -1,6 +1,7 @@ --- layout: default title: Framework +description: An article dicussing about Frameworks, an essential tool in software development with description, use cases and History. nav_order: 3 has_children: true --- diff --git a/docs/Framework/JUCE/JUCE.md b/docs/Framework/JUCE/JUCE.md index 4b3c006..c971bc9 100644 --- a/docs/Framework/JUCE/JUCE.md +++ b/docs/Framework/JUCE/JUCE.md @@ -1,6 +1,7 @@ --- layout: default title: JUCE +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Framework has_children: false diff --git a/docs/Framework/NET/net.md b/docs/Framework/NET/net.md index e888878..56966a3 100644 --- a/docs/Framework/NET/net.md +++ b/docs/Framework/NET/net.md @@ -1,6 +1,7 @@ --- layout: default title: .NET +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Framework has_children: false diff --git a/docs/Framework/OpenGL/OpenGL.md b/docs/Framework/OpenGL/OpenGL.md index b1e566b..5dd48e4 100644 --- a/docs/Framework/OpenGL/OpenGL.md +++ b/docs/Framework/OpenGL/OpenGL.md @@ -1,6 +1,7 @@ --- layout: default title: OpenGL +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Framework has_children: false diff --git a/docs/Framework/SFML/SFML.md b/docs/Framework/SFML/SFML.md index 0c75bdc..477b4e7 100644 --- a/docs/Framework/SFML/SFML.md +++ b/docs/Framework/SFML/SFML.md @@ -1,6 +1,7 @@ --- layout: default title: SFML +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Framework has_children: false diff --git a/docs/IDE/AdobeDreamWeaver/AdobeDreamWeaver.md b/docs/IDE/AdobeDreamWeaver/AdobeDreamWeaver.md index c8db326..a6f10c0 100644 --- a/docs/IDE/AdobeDreamWeaver/AdobeDreamWeaver.md +++ b/docs/IDE/AdobeDreamWeaver/AdobeDreamWeaver.md @@ -1,6 +1,7 @@ --- layout: default title: Adobe DreamWeaver +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: IDE has_children: false diff --git a/docs/IDE/IDE.md b/docs/IDE/IDE.md index f898920..2952c92 100644 --- a/docs/IDE/IDE.md +++ b/docs/IDE/IDE.md @@ -1,6 +1,7 @@ --- layout: default title: IDE +description: An article about Integrated development environment (IDE) defining use cases, history and describtion. nav_order: 2 has_children: true --- diff --git a/docs/IDE/MonoDevelop/MonoDevelop.md b/docs/IDE/MonoDevelop/MonoDevelop.md index 0a8fb6c..658cf00 100644 --- a/docs/IDE/MonoDevelop/MonoDevelop.md +++ b/docs/IDE/MonoDevelop/MonoDevelop.md @@ -1,6 +1,7 @@ --- layout: default title: MonoDevelop +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: IDE has_children: false diff --git a/docs/IDE/NetBeans/NetBeans.md b/docs/IDE/NetBeans/NetBeans.md index a1ad95c..78414cf 100644 --- a/docs/IDE/NetBeans/NetBeans.md +++ b/docs/IDE/NetBeans/NetBeans.md @@ -1,6 +1,7 @@ --- layout: default title: NetBeans +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: IDE has_children: false diff --git a/docs/IDE/Notepad++/Notepad++.md b/docs/IDE/Notepad++/Notepad++.md index 66bd9bf..97b8fee 100644 --- a/docs/IDE/Notepad++/Notepad++.md +++ b/docs/IDE/Notepad++/Notepad++.md @@ -1,6 +1,7 @@ --- layout: default title: Notepad++ +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: IDE has_children: false diff --git a/docs/IDE/Rider/Rider.md b/docs/IDE/Rider/Rider.md index 561d980..d1e1415 100644 --- a/docs/IDE/Rider/Rider.md +++ b/docs/IDE/Rider/Rider.md @@ -1,6 +1,7 @@ --- layout: default title: Rider +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: IDE has_children: false diff --git a/docs/IDE/VSCode/VSCode.md b/docs/IDE/VSCode/VSCode.md index d067eba..e91eb04 100644 --- a/docs/IDE/VSCode/VSCode.md +++ b/docs/IDE/VSCode/VSCode.md @@ -1,6 +1,7 @@ --- layout: default title: VSCode +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." parent: IDE has_children: false --- diff --git a/docs/IDE/VisualStudio/ChangeProjectName.md b/docs/IDE/VisualStudio/ChangeProjectName.md index fe22c6f..25f1ddf 100644 --- a/docs/IDE/VisualStudio/ChangeProjectName.md +++ b/docs/IDE/VisualStudio/ChangeProjectName.md @@ -1,6 +1,7 @@ --- layout: default title: Change Project Name +description: An article discussing methods to transfer github enterprise account repositires into personal github repositires. nav_order: 1 parent: Visual Studio grand_parent: IDE diff --git a/docs/IDE/VisualStudio/IncludeDLLs.md b/docs/IDE/VisualStudio/IncludeDLLs.md index d3d07e1..badbdd5 100644 --- a/docs/IDE/VisualStudio/IncludeDLLs.md +++ b/docs/IDE/VisualStudio/IncludeDLLs.md @@ -1,6 +1,7 @@ --- layout: default title: Include DLLs +description: An article demonstrating the use cases of DLL linking within visual studio. A practical use when dealing with programming libraries and code organization. nav_order: 2 parent: Visual Studio grand_parent: IDE diff --git a/docs/IDE/VisualStudio/VisualStudio.md b/docs/IDE/VisualStudio/VisualStudio.md index 42b5d85..a17872a 100644 --- a/docs/IDE/VisualStudio/VisualStudio.md +++ b/docs/IDE/VisualStudio/VisualStudio.md @@ -1,6 +1,7 @@ --- layout: default title: Visual Studio +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: IDE has_children: true diff --git a/docs/Language/C#/C#.md b/docs/Language/C#/C#.md index e55f708..ebd2584 100644 --- a/docs/Language/C#/C#.md +++ b/docs/Language/C#/C#.md @@ -1,6 +1,7 @@ --- layout: default title: C# +description: An article dicussing features, key releases and getting started topics about C# a modern, versatile, object-oriented programming language developed by Microsoft. nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/C++/Addresses.md b/docs/Language/C++/Addresses.md index d1aec6c..bfa34b1 100644 --- a/docs/Language/C++/Addresses.md +++ b/docs/Language/C++/Addresses.md @@ -1,6 +1,7 @@ --- layout: default title: Addresses +description: An article dicussing about c++ memory addresses. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/C++.md b/docs/Language/C++/C++.md index cb362dd..dcde464 100644 --- a/docs/Language/C++/C++.md +++ b/docs/Language/C++/C++.md @@ -1,6 +1,7 @@ --- layout: default title: C++ +description: An article dicussing features, key releases and getting started topics about C++ a modern, versatile, object-oriented programming language developed by Microsoft. nav_order: 1 parent: Language has_children: true diff --git a/docs/Language/C++/ConstantPointerToConstant.md b/docs/Language/C++/ConstantPointerToConstant.md index 23fabb6..dffd5bb 100644 --- a/docs/Language/C++/ConstantPointerToConstant.md +++ b/docs/Language/C++/ConstantPointerToConstant.md @@ -1,6 +1,7 @@ --- layout: default title: Constant Pointers To Constants +description: An article dicussing about c++ Constant Pointers To Constants, its benefits and basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/ConstantPointers.md b/docs/Language/C++/ConstantPointers.md index 31a6daf..c3c956c 100644 --- a/docs/Language/C++/ConstantPointers.md +++ b/docs/Language/C++/ConstantPointers.md @@ -1,6 +1,7 @@ --- layout: default title: Constant Pointers +description: An article dicussing about c++ constant pointers, its benefits and basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/Dereferencing.md b/docs/Language/C++/Dereferencing.md index 3d5b275..342a0f8 100644 --- a/docs/Language/C++/Dereferencing.md +++ b/docs/Language/C++/Dereferencing.md @@ -1,6 +1,7 @@ --- layout: default title: Dereferencing +description: An article dicussing about c++ Dereferencing, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/MemberPointers.md b/docs/Language/C++/MemberPointers.md index 7ba51dd..1101f4b 100644 --- a/docs/Language/C++/MemberPointers.md +++ b/docs/Language/C++/MemberPointers.md @@ -1,6 +1,7 @@ --- layout: default title: Member Pointers +description: An article dicussing about c++ Member Pointers, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/MultilevelPointers.md b/docs/Language/C++/MultilevelPointers.md index 9d8bb23..5e8057e 100644 --- a/docs/Language/C++/MultilevelPointers.md +++ b/docs/Language/C++/MultilevelPointers.md @@ -1,6 +1,7 @@ --- layout: default title: Multilevel Pointers +description: An article dicussing about c++ Multi-level Pointers, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/NullPointers.md b/docs/Language/C++/NullPointers.md index 1361951..ba47958 100644 --- a/docs/Language/C++/NullPointers.md +++ b/docs/Language/C++/NullPointers.md @@ -1,6 +1,7 @@ --- layout: default title: Null Pointers +description: An article dicussing about c++ Null Pointers, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/PointerToConstant.md b/docs/Language/C++/PointerToConstant.md index b122797..96e46f2 100644 --- a/docs/Language/C++/PointerToConstant.md +++ b/docs/Language/C++/PointerToConstant.md @@ -1,6 +1,7 @@ --- layout: default title: Pointers To Constants +description: An article dicussing about c++ Pointers To Constants, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/Pointers.md b/docs/Language/C++/Pointers.md index 7a6b40e..47aef04 100644 --- a/docs/Language/C++/Pointers.md +++ b/docs/Language/C++/Pointers.md @@ -1,6 +1,7 @@ --- layout: default title: Pointers +description: An article dicussing about c++ Pointers, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/RawPointers.md b/docs/Language/C++/RawPointers.md index da92f0f..4004c41 100644 --- a/docs/Language/C++/RawPointers.md +++ b/docs/Language/C++/RawPointers.md @@ -1,6 +1,7 @@ --- layout: default title: Raw Pointers +description: An article dicussing about c++ Raw Pointers, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/References.md b/docs/Language/C++/References.md index aac7828..54e6b2b 100644 --- a/docs/Language/C++/References.md +++ b/docs/Language/C++/References.md @@ -1,6 +1,7 @@ --- layout: default title: References +description: An article dicussing about c++ References, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/SmartPointers.md b/docs/Language/C++/SmartPointers.md index 65a998d..c442b53 100644 --- a/docs/Language/C++/SmartPointers.md +++ b/docs/Language/C++/SmartPointers.md @@ -1,6 +1,7 @@ --- layout: default title: Smart Pointers +description: An article dicussing about c++ Smart Pointers, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C++/VoidPointers.md b/docs/Language/C++/VoidPointers.md index 9bf6a56..9924e64 100644 --- a/docs/Language/C++/VoidPointers.md +++ b/docs/Language/C++/VoidPointers.md @@ -1,6 +1,7 @@ --- layout: default title: Void Pointers +description: An article dicussing about c++ Void Pointers, with basic examples. nav_order: 1 parent: C++ grand_parent: Language diff --git a/docs/Language/C/C.md b/docs/Language/C/C.md index 58320fb..6425997 100644 --- a/docs/Language/C/C.md +++ b/docs/Language/C/C.md @@ -1,6 +1,7 @@ --- layout: default title: C +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/CSS/CSS.md b/docs/Language/CSS/CSS.md index 3076ccc..5274ecc 100644 --- a/docs/Language/CSS/CSS.md +++ b/docs/Language/CSS/CSS.md @@ -1,6 +1,7 @@ --- layout: default title: CSS +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/Dart/Dart.md b/docs/Language/Dart/Dart.md index 983cfa9..e518fe1 100644 --- a/docs/Language/Dart/Dart.md +++ b/docs/Language/Dart/Dart.md @@ -1,6 +1,7 @@ --- layout: default title: Dart +description: An article dicussing about the programming language dart, with description and basic examples. nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/GO/GO.md b/docs/Language/GO/GO.md index 7ac220c..bc18474 100644 --- a/docs/Language/GO/GO.md +++ b/docs/Language/GO/GO.md @@ -1,6 +1,7 @@ --- layout: default title: GO +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/HTML/HTML.md b/docs/Language/HTML/HTML.md index d0cf466..39a7744 100644 --- a/docs/Language/HTML/HTML.md +++ b/docs/Language/HTML/HTML.md @@ -1,6 +1,7 @@ --- layout: default title: HTML +description: An article dicussing about the markup language HTML with a description and basic exmaples. nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/Haxe/Haxe.md b/docs/Language/Haxe/Haxe.md index 3a38abf..9d807fa 100644 --- a/docs/Language/Haxe/Haxe.md +++ b/docs/Language/Haxe/Haxe.md @@ -1,6 +1,7 @@ --- layout: default title: Haxe +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/JS/JS.md b/docs/Language/JS/JS.md index df526d8..27a5a52 100644 --- a/docs/Language/JS/JS.md +++ b/docs/Language/JS/JS.md @@ -1,6 +1,7 @@ --- layout: default title: JS +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/Java/Java.md b/docs/Language/Java/Java.md index fe3b478..1bbe999 100644 --- a/docs/Language/Java/Java.md +++ b/docs/Language/Java/Java.md @@ -1,6 +1,7 @@ --- layout: default title: Java +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/Language.md b/docs/Language/Language.md index 486e6bb..8bd3105 100644 --- a/docs/Language/Language.md +++ b/docs/Language/Language.md @@ -1,6 +1,7 @@ --- layout: default title: Language +description: An article dicussing about programming languages with a definition, use cases and History. nav_order: 2 has_children: true --- diff --git a/docs/Language/Lisp/Lisp.md b/docs/Language/Lisp/Lisp.md index 19ed036..7b4853f 100644 --- a/docs/Language/Lisp/Lisp.md +++ b/docs/Language/Lisp/Lisp.md @@ -1,6 +1,7 @@ --- layout: default title: Lisp +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/Lua/Lua.md b/docs/Language/Lua/Lua.md index c9670d7..6bef819 100644 --- a/docs/Language/Lua/Lua.md +++ b/docs/Language/Lua/Lua.md @@ -1,6 +1,7 @@ --- layout: default title: Lua +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/Python/Python.md b/docs/Language/Python/Python.md index 6038ba0..34c98f4 100644 --- a/docs/Language/Python/Python.md +++ b/docs/Language/Python/Python.md @@ -1,6 +1,7 @@ --- layout: default title: Python +description: An article dicussing about a programming language known as Python, with features, key releases, getting started and basic examples. nav_order: 1 parent: Language has_children: true diff --git a/docs/Language/Python/Tries.md b/docs/Language/Python/Tries.md index 84ef142..d8ba549 100644 --- a/docs/Language/Python/Tries.md +++ b/docs/Language/Python/Tries.md @@ -1,6 +1,7 @@ --- layout: default title: Tries +description: An article dicussing about python's data structure known as Tries with a description, use cases and considerations. nav_order: 1 parent: Python grand_parent: Language diff --git a/docs/Language/React/React.md b/docs/Language/React/React.md index dbf0db0..9223cf8 100644 --- a/docs/Language/React/React.md +++ b/docs/Language/React/React.md @@ -1,6 +1,7 @@ --- layout: default title: React +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/Ruby/Ruby.md b/docs/Language/Ruby/Ruby.md index f8889d8..096569a 100644 --- a/docs/Language/Ruby/Ruby.md +++ b/docs/Language/Ruby/Ruby.md @@ -1,6 +1,7 @@ --- layout: default title: Ruby +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Language has_children: false diff --git a/docs/Language/Rust/Rust.md b/docs/Language/Rust/Rust.md index be0d501..749d716 100644 --- a/docs/Language/Rust/Rust.md +++ b/docs/Language/Rust/Rust.md @@ -1,6 +1,7 @@ --- layout: default title: Rust +description: An article dicussing about a programming language known as rust, with definition and basic examples. nav_order: 1 parent: Language has_children: false diff --git a/docs/VersionControl/Git/Git.md b/docs/VersionControl/Git/Git.md index 445de28..adb2d8f 100644 --- a/docs/VersionControl/Git/Git.md +++ b/docs/VersionControl/Git/Git.md @@ -1,6 +1,7 @@ --- layout: default title: Git +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Version Control has_children: false diff --git a/docs/VersionControl/Git/GitBash.md b/docs/VersionControl/Git/GitBash.md index da94287..6a8727b 100644 --- a/docs/VersionControl/Git/GitBash.md +++ b/docs/VersionControl/Git/GitBash.md @@ -1,6 +1,7 @@ --- layout: default title: GitBash +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Version Control has_children: false diff --git a/docs/VersionControl/Git/Github.md b/docs/VersionControl/Git/Github.md index 02530bb..db3037a 100644 --- a/docs/VersionControl/Git/Github.md +++ b/docs/VersionControl/Git/Github.md @@ -1,6 +1,7 @@ --- layout: default title: Github +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Version Control has_children: true diff --git a/docs/VersionControl/Git/Github/EnterpriseToPersonal.md b/docs/VersionControl/Git/Github/EnterpriseToPersonal.md index 489cb39..9647746 100644 --- a/docs/VersionControl/Git/Github/EnterpriseToPersonal.md +++ b/docs/VersionControl/Git/Github/EnterpriseToPersonal.md @@ -1,6 +1,7 @@ --- layout: default title: Transfer Enterprise to Personal Github +description: An article dicussing about the steps to transfer an enterprise account's repositories to personal repositories on github. nav_order: 1 parent: Github grand_parent: Version Control diff --git a/docs/VersionControl/Git/Gitlab.md b/docs/VersionControl/Git/Gitlab.md index 3d6f0dd..f526203 100644 --- a/docs/VersionControl/Git/Gitlab.md +++ b/docs/VersionControl/Git/Gitlab.md @@ -1,6 +1,7 @@ --- layout: default title: Gitlab +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Version Control has_children: false diff --git a/docs/VersionControl/P4V/Helix.md b/docs/VersionControl/P4V/Helix.md index 3c89090..610db08 100644 --- a/docs/VersionControl/P4V/Helix.md +++ b/docs/VersionControl/P4V/Helix.md @@ -1,6 +1,7 @@ --- layout: default title: Helix +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Version Control has_children: false diff --git a/docs/VersionControl/P4V/HelixSwarm.md b/docs/VersionControl/P4V/HelixSwarm.md index 52d1d0e..7cb8856 100644 --- a/docs/VersionControl/P4V/HelixSwarm.md +++ b/docs/VersionControl/P4V/HelixSwarm.md @@ -1,6 +1,7 @@ --- layout: default title: HelixSwarm +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Version Control has_children: false diff --git a/docs/VersionControl/P4V/Perforce.md b/docs/VersionControl/P4V/Perforce.md index 255ad9d..8ae6157 100644 --- a/docs/VersionControl/P4V/Perforce.md +++ b/docs/VersionControl/P4V/Perforce.md @@ -1,6 +1,7 @@ --- layout: default title: Perforce +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Version Control has_children: false diff --git a/docs/VersionControl/PlasticSCM/Plastic.md b/docs/VersionControl/PlasticSCM/Plastic.md index 1135733..85b6fb8 100644 --- a/docs/VersionControl/PlasticSCM/Plastic.md +++ b/docs/VersionControl/PlasticSCM/Plastic.md @@ -1,6 +1,7 @@ --- layout: default title: Plastic +description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page." nav_order: 1 parent: Version Control has_children: false diff --git a/docs/VersionControl/VersionControl.md b/docs/VersionControl/VersionControl.md index eebf142..6512daf 100644 --- a/docs/VersionControl/VersionControl.md +++ b/docs/VersionControl/VersionControl.md @@ -1,6 +1,7 @@ --- layout: default title: Version Control +description: An article dicussing about version control, with definition, use cases, History. nav_order: 6 has_children: true ---