+
<a href="url" target="_blank"> Link Text </a>
+
target : blanck|self|parent|top
+
• Bookmarks :
<h2 id="C4">Chapter 4</h2>
@@ -337,15 +334,13 @@ • Bookmarks :
# Lists
-
+
• Unordered :
<ul>
<li>Item</li>
<li>Item</li>
</ul>
-
-
• Ordered :
<ol type="value" start="20">
<li>Item</li>
@@ -355,9 +350,7 @@ • Ordered :
value
=1|a|A|I|i
start
: start counting from 20
-
-
• Description Lists :
<dl>
<dt>Term</dt>
@@ -370,7 +363,8 @@ • Description Lists :
# Tables
-
<table>
+
+
<table>
<thead>
<tr>
<th>Table Heading</th>
@@ -391,22 +385,24 @@ # Tables
</tfoot>
</table>
-
- colspan="value"
: span columns
- rowspan="value"
: span rows
-
+
+ colspan="value"
: span columns
+ rowspan="value"
: span rows
+
-
Caption :
-
<caption>Text</caption>
+
Caption :
+
<caption>Text</caption>
-
The <caption>
tag must be inserted immediately after the <table>
tag.
+
The <caption>
tag must be inserted immediately after the <table>
tag.
+
# Images
-
<img src="image.jpg" alt="Image Not Supported" width="104" height="142">
+
+
<img src="image.jpg" alt="Image Not Supported" width="104" height="142">
-
+
• Clickable Area :
<map name="workmap">
<area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
@@ -414,8 +410,7 @@ • Clickable Area :
<area shape="circle" coords="337,300,44" alt="Cup of coffee" href="coffee.htm">
</map>
-
-
+
• Picture Gallery :
<picture>
<source media="(min-width:650px)" srcset="img_pink_flowers.jpg">
@@ -429,66 +424,70 @@ • Picture Gallery :
# Video
-
<video width="320" height="240" autoplay>
+
+
<video width="320" height="240" autoplay>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Browser does not support video tag
</video>
+
# Audio
-
<audio controls>
+
+
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Browser does not support audio element
</audio>
+
# Frames
-
<iframe src="URL" height="100px" width="100px"></iframe>
+
+
<iframe src="URL" height="100px" width="100px"></iframe>
<iframe src="demo_iframe.html" name="iframe_a"></iframe>
<a href="https://www.w3schools.com" target="iframe_a">W3Schools.com</a>
<iframe width="420" height="315" src="https://www.youtube.com/embed/tgbNymZ7vqY"></iframe>
+
# Forms
-
<form action="action.php" method="get/post" autocomplete="on/off">
+
+
<form action="action.php" method="get/post" autocomplete="on/off">
<label for="fname">Name</label>
<input type="text" name="iname" value="john">
</form>
-
- -
- Input Type :
-
button|checkbox|color|date|datetime-local|email|file|hidden|image|month|number|password|radio|range|reset|search|submit|text|tel|time|url|week
-
- -
- Form Attribute :
-
autofocus|checked|disabled|readonly|required|multiple|placeholder|size|value|min|max|maxlength
-
-
+
+ -
+ Input Type :
+
button|checkbox|color|date|datetime-local|email|file|hidden|image|month|number|password|radio|range|reset|search|submit|text|tel|time|url|week
+
+ -
+ Form Attribute :
+
autofocus|checked|disabled|readonly|required|multiple|placeholder|size|value|min|max|maxlength
+
+
-
• Button :
<button type="button" onclick="alert('Message')">Click</button>
-
-
+
• Fieldset :
<fieldset>
<legend>Caption</legend>
</fieldset>
-
-
+
• Selection List :
<select id="cars" name="cars" size="3" multiple>
<option value="volvo">Volvo</option>
@@ -498,8 +497,7 @@ • Selection List :
<option value="fiat" selected>Fiat</option>
</select>
-
-
+
• Data List :
<datalist id="browsers">
<option value="Internet Explorer">
@@ -509,8 +507,7 @@ • Data List :
<option value="Safari">
</datalist>
-
-
+
• Textarea :
<textarea name="message" rows="10" cols="30">
Text
@@ -521,79 +518,81 @@ • Textarea :
# HTML Entity
-
-
-
-
- Char |
- Entity |
-
-
-
-
- & |
- & |
-
-
- ∗ |
- ∗ |
-
-
- ∼ |
- ∼ |
-
-
- ∧ |
- ∧ |
-
-
- < |
- < |
-
-
- > |
- > |
-
-
- © |
- © |
-
-
- ® |
- ® |
-
-
- ™ |
- ™ |
-
-
- × |
- × |
-
-
- • |
- • |
-
-
- ← |
- ← |
-
-
- → |
- → |
-
-
- ↑ |
- ↑ |
-
-
- ↓ |
- ↓ |
-
-
-
+
+
+
+
+
+ Char |
+ Entity |
+
+
+
+
+ & |
+ & |
+
+
+ ∗ |
+ ∗ |
+
+
+ ∼ |
+ ∼ |
+
+
+ ∧ |
+ ∧ |
+
+
+ < |
+ < |
+
+
+ > |
+ > |
+
+
+ © |
+ © |
+
+
+ ® |
+ ® |
+
+
+ ™ |
+ ™ |
+
+
+ × |
+ × |
+
+
+ • |
+ • |
+
+
+ ← |
+ ← |
+
+
+ → |
+ → |
+
+
+ ↑ |
+ ↑ |
+
+
+ ↓ |
+ ↓ |
+
+
+
+
+
More? Click Here
-
diff --git a/laravel.html b/laravel.html
index 11233c0..c689e43 100644
--- a/laravel.html
+++ b/laravel.html
@@ -36,287 +36,295 @@
Laravel
# Laravel Framework
-
Laravel is an open-source PHP web framework used for building web applications, based on the Model-View-Controller (MVC) architectural pattern. Laravel offers a wide range of features, including routing, middleware, authentication, sessions, caching, database management (with Eloquent ORM), and templating with Blade.
-
A web framework provides a structure, foundation and starting point for creating application, allowing to focus on creating application. It includes a collection of pre-written code, libraries, APIs, and tools that developers can use to build applications more efficiently.
+
+
Laravel is an open-source PHP web framework used for building web applications, based on the Model-View-Controller (MVC) architectural pattern. Laravel offers a wide range of features, including routing, middleware, authentication, sessions, caching, database management (with Eloquent ORM), and templating with Blade.
+
A web framework provides a structure, foundation and starting point for creating application, allowing to focus on creating application. It includes a collection of pre-written code, libraries, APIs, and tools that developers can use to build applications more efficiently.
+
# Folder Structure
-
- -
-
app
: This directory contains the core code of the application. It includes subdirectories, like
-
- Console
: Contains custom Artisan commands generated using the make:command
command.
- Exceptions
: Contains custom exception handlers generated using the make:exception
command..
- Http
: Contains controllers, middleware, and form requests.
- Models
: Contains the Eloquent ORM models.
- Providers
: Contains service providers for application bootstrapping.
-
-
- -
-
bootstrap
: Contains the application's bootstrap files, including app.php
, which bootstraps the Laravel framework.
-
- -
-
config
: Configuration files for various parts of the application, such as database, cache, and session configuration.
-
- -
-
database
: Contains database migrations, seeds, and model factories.
-
- migrations
: Database migration files.
- seeds
: Database seeders.
- factories
: Model factories for generating test data.
-
-
- -
-
public
: This is the web server's document root. It contains the entry point (index.php
), which is the entry point for all requests entering the application and configures autoloading and publicly accessible assets like CSS, JavaScript, and image files.
-
- -
-
resources
: Contains resources that the application uses, such as views, language files, and assets.
-
- css, js, sass
: Contains CSS and JavaScript assets.
- lang
: Language files for localization.
- views
: Blade templates for generating HTML.
-
-
- -
-
routes
: Contains route definitions for the application.
-
- web.php
: Routes for the web interface.
- api.php
: Routes for API endpoints.
- console.php
: Routes for Artisan commands.
-
-
- -
-
storage
: Contains application storage, such as logs, temporary files, and uploaded files.
-
- app
: Application-specific files generated by the application.
- framework
: Cache, sessions, and views used by the framework.
- logs
: Application log files.
-
-
- -
-
tests
: The tests directory contains your automated tests, such as PHPUnit test cases for the application.
-
- -
-
vendor
: Contains Composer dependencies.
-
- -
-
.env
: Environment configuration file.
-
- -
-
artisan
: Command line utility for interacting with your Laravel application.
-
-
+
+
+ -
+
app
: This directory contains the core code of the application. It includes subdirectories, like
+
+ Console
: Contains custom Artisan commands generated using the make:command
command.
+ Exceptions
: Contains custom exception handlers generated using the make:exception
command..
+ Http
: Contains controllers, middleware, and form requests.
+ Models
: Contains the Eloquent ORM models.
+ Providers
: Contains service providers for application bootstrapping.
+
+
+ -
+
bootstrap
: Contains the application's bootstrap files, including app.php
, which bootstraps the Laravel framework.
+
+ -
+
config
: Configuration files for various parts of the application, such as database, cache, and session configuration.
+
+ -
+
database
: Contains database migrations, seeds, and model factories.
+
+ migrations
: Database migration files.
+ seeds
: Database seeders.
+ factories
: Model factories for generating test data.
+
+
+ -
+
public
: This is the web server's document root. It contains the entry point (index.php
), which is the entry point for all requests entering the application and configures autoloading and publicly accessible assets like CSS, JavaScript, and image files.
+
+ -
+
resources
: Contains resources that the application uses, such as views, language files, and assets.
+
+ css, js, sass
: Contains CSS and JavaScript assets.
+ lang
: Language files for localization.
+ views
: Blade templates for generating HTML.
+
+
+ -
+
routes
: Contains route definitions for the application.
+
+ web.php
: Routes for the web interface.
+ api.php
: Routes for API endpoints.
+ console.php
: Routes for Artisan commands.
+
+
+ -
+
storage
: Contains application storage, such as logs, temporary files, and uploaded files.
+
+ app
: Application-specific files generated by the application.
+ framework
: Cache, sessions, and views used by the framework.
+ logs
: Application log files.
+
+
+ -
+
tests
: The tests directory contains your automated tests, such as PHPUnit test cases for the application.
+
+ -
+
vendor
: Contains Composer dependencies.
+
+ -
+
.env
: Environment configuration file.
+
+ -
+
artisan
: Command line utility for interacting with your Laravel application.
+
+
+
# Routes
-
A route is a way of mapping HTTP request URIs to a specific controller action or a closure.
-
Route::get('/view/{id}', function(string $id){
+
+
A route is a way of mapping HTTP request URIs to a specific controller action or a closure.
+
Route::get('/view/{id}', function(string $id){
return "User" . $id;
});
-
http://127.0.0.1/view/17
-
- /view
: It is a route
- /17
: It is a routing parameter.
-
-
Route Methods :
-
-
-
-
- Method |
- Description |
-
-
-
-
- get() |
- Read data |
-
-
- post() |
- Add/Create, Update, Delete |
-
-
- put() |
- Update |
-
-
- patch() |
- Update |
-
-
- delete() |
- Delete |
-
-
- options() |
- Request information about methods supported by server for resource |
-
-
- match() |
- Used to define route that responds to multiple requests |
-
-
- any() |
- Used to define route that responds to all requests |
-
-
-
+
http://127.0.0.1/view/17
+
+ /view
: It is a route
+ /17
: It is a routing parameter.
+
+
Route Methods :
+
+
+
+
+ Method |
+ Description |
+
+
+
+
+ get() |
+ Read data |
+
+
+ post() |
+ Add/Create, Update, Delete |
+
+
+ put() |
+ Update |
+
+
+ patch() |
+ Update |
+
+
+ delete() |
+ Delete |
+
+
+ options() |
+ Request information about methods supported by server for resource |
+
+
+ match() |
+ Used to define route that responds to multiple requests |
+
+
+ any() |
+ Used to define route that responds to all requests |
+
+
+
+
# Blades
-
Blade is the simple yet powerful templating engine that is included with Laravel. All Blade templates are compiled into plain PHP code and cached until they are modified, meaning Blade adds essentially zero overhead to the application. Blade template files use the .blade.php
file extension and are typically stored in the resources/views
directory.
-
Blade Directives :
-
In addition to template inheritance and displaying data, Blade also provides convenient shortcuts for common PHP control structures, such as conditional statements and loops called blade directives.
-
- -
-
Displaying Data :
- {{ "Time : " . $time }}
-
-{{!! "<h1>I'm Dev</h1>" !!}}
-
- -
-
Comment :
- {{-- This is comment --}}
-
- -
-
Raw PHP :
- @php strtoupper("abcd") @endphp
-
- -
-
Control Structure :
- @if ($age = 18)
- $permission = "Complete"
-@elseif ($age < 18)
- $permission = "Partial"
-@else
- "Incorrect Age"
-@endif
-
- -
-
Switch Stamement :
- @switch($val)
- @case(1)
- // Case 1
- @break
- @case(2)
- // Case 2
- @break
- @default
- // Default Case
-@endswitch
-
- -
-
Loops :
- {{-- For Loop --}}
-@for ($i = 0; $i < 10; $i++)
- Current value is {{ $i }}
-@endfor
-
-{{-- For Each --}}
-@foreach ($users as $user)
- This is user {{ $user->id }}
-@endforeach
-
-{{-- While Loop --}}
-@while (true)
- <p>I'm looping forever.</p>
-@endwhile
-
-{{-- For Else --}}
-@forelse ($users as $user)
- <li>{{ $user->name }}</li>
-@empty
- <p>No users</p>
-@endforelse
-
- -
-
Loop Control :
- @foreach ($users as $user)
- @if ($user->type == 1)
- @continue
- @endif
-
- <li>{{ $user->name }}</li>
-
- @if ($user->number == 5)
- @break
- @endif
-@endforeach
-
- -
-
Loop Variables :
-
-
-
-
- Property |
- Description |
-
-
-
-
- $loop->index |
- Index of current iteration (starts at 0). |
-
-
- $loop->iteration |
- Current iteration (starts at 1). |
-
-
- $loop->remaining |
- Iterations remaining in the loop |
-
-
- $loop->count |
- Total number of items in array |
-
-
- $loop->first |
- Whether this is first iteration |
-
-
- $loop->last |
- Whether this is last iteration |
-
-
- $loop->even |
- Whether this is even iteration |
-
-
- $loop->odd |
- Whether this is odd iteration |
-
-
- $loop->depth |
- Nesting level of current loop |
-
-
- $loop->parent |
- When in nested loop, parent's loop variable |
-
-
-
-
-
- -
-
Empty :
- @empty($string)
- // Variable, array or collection is Empty
-@endempty
-
- -
-
Isset :
- @isset($records)
- // Variable or array key is Set and is Not Null
-@endisset
-
-
-
+
+
Blade is the simple yet powerful templating engine that is included with Laravel. All Blade templates are compiled into plain PHP code and cached until they are modified, meaning Blade adds essentially zero overhead to the application. Blade template files use the .blade.php
file extension and are typically stored in the resources/views
directory.
+
+
Blade Directives :
+
In addition to template inheritance and displaying data, Blade also provides convenient shortcuts for common PHP control structures, such as conditional statements and loops called blade directives.
+
+ -
+
Displaying Data :
+ {{ "Time : " . $time }}
+
+ {{!! "<h1>I'm Dev</h1>" !!}}
+
+ -
+
Comment :
+ {{-- This is comment --}}
+
+ -
+
Raw PHP :
+ @php strtoupper("abcd") @endphp
+
+ -
+
Control Structure :
+ @if ($age = 18)
+ $permission = "Complete"
+ @elseif ($age < 18)
+ $permission = "Partial"
+ @else
+ "Incorrect Age"
+ @endif
+
+ -
+
Switch Stamement :
+ @switch($val)
+ @case(1)
+ // Case 1
+ @break
+ @case(2)
+ // Case 2
+ @break
+ @default
+ // Default Case
+ @endswitch
+
+ -
+
Loops :
+ {{-- For Loop --}}
+ @for ($i = 0; $i < 10; $i++)
+ Current value is {{ $i }}
+ @endfor
+
+ {{-- For Each --}}
+ @foreach ($users as $user)
+ This is user {{ $user->id }}
+ @endforeach
+
+ {{-- While Loop --}}
+ @while (true)
+ <p>I'm looping forever.</p>
+ @endwhile
+
+ {{-- For Else --}}
+ @forelse ($users as $user)
+ <li>{{ $user->name }}</li>
+ @empty
+ <p>No users</p>
+ @endforelse
+
+ -
+
Loop Control :
+ @foreach ($users as $user)
+ @if ($user->type == 1)
+ @continue
+ @endif
+
+ <li>{{ $user->name }}</li>
+
+ @if ($user->number == 5)
+ @break
+ @endif
+ @endforeach
+
+ -
+
Loop Variables :
+
+
+
+
+ Property |
+ Description |
+
+
+
+
+ $loop->index |
+ Index of current iteration (starts at 0). |
+
+
+ $loop->iteration |
+ Current iteration (starts at 1). |
+
+
+ $loop->remaining |
+ Iterations remaining in the loop |
+
+
+ $loop->count |
+ Total number of items in array |
+
+
+ $loop->first |
+ Whether this is first iteration |
+
+
+ $loop->last |
+ Whether this is last iteration |
+
+
+ $loop->even |
+ Whether this is even iteration |
+
+
+ $loop->odd |
+ Whether this is odd iteration |
+
+
+ $loop->depth |
+ Nesting level of current loop |
+
+
+ $loop->parent |
+ When in nested loop, parent's loop variable |
+
+
+
+
+
+ -
+
Empty :
+ @empty($string)
+ // Variable, array or collection is Empty
+ @endempty
+
+ -
+
Isset :
+ @isset($records)
+ // Variable or array key is Set and is Not Null
+ @endisset
+
+
+
Passing Data Route to View :
Route - web.php
@@ -332,82 +340,87 @@
Blade - userpage.blade.php
# Composer
-
Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on, and it will manage (install or update) them for you. Composer is not a package manager; it is a dependency manager.
-
Composer Commands :
-
+
+
Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on, and it will manage (install or update) them for you. Composer is not a package manager; it is a dependency manager.
+
Composer Commands :
+
+
# Artisan
-
Artisan is the command-line interface included with Laravel. Artisan exists at the root of your application as the artisan script and provides a number of helpful commands that can assist in building the application.
-
Artisan Commands :
-
- -
-
Run Project :
- php artisan serve
-
- -
-
Create Controller :
- php artisan make:controller [Controller-Name]
-
- -
-
Create Resource Controller :
- php artisan make:controller [Resource-Controller] --resource
-
- -
-
Create Component :
- php artisan make:component [input]
-
- -
-
Create ORM Model :
- php artisan make:model [Model]
-
- -
-
Create Migration Table :
- php artisan make:migration [create-user-table]
-
- -
-
Run Migrations :
- php artisan migrate
-
- -
-
Rollback Migrations :
- php artisan migrate:rollback
-
- -
-
Reset Migrations :
- php artisan migrate:reset
-
- -
-
Refresh Migrations :
- php artisan migrate:refresh
-
- -
-
Create Import/Export Model :
- php artisan make:import [ModelImport] --model=[Model]
-
-php artisan make:export [ModelExport] --model=[Model]
-
-
+
+
Artisan is the command-line interface included with Laravel. Artisan exists at the root of your application as the artisan script and provides a number of helpful commands that can assist in building the application.
+
Artisan Commands :
+
+ -
+
Run Project :
+ php artisan serve
+
+ -
+
Create Controller :
+ php artisan make:controller [Controller-Name]
+
+ -
+
Create Resource Controller :
+ php artisan make:controller [Resource-Controller] --resource
+
+ -
+
Create Component :
+ php artisan make:component [input]
+
+ -
+
Create ORM Model :
+ php artisan make:model [Model]
+
+ -
+
Create Migration Table :
+ php artisan make:migration [create-user-table]
+
+ -
+
Run Migrations :
+ php artisan migrate
+
+ -
+
Rollback Migrations :
+ php artisan migrate:rollback
+
+ -
+
Reset Migrations :
+ php artisan migrate:reset
+
+ -
+
Refresh Migrations :
+ php artisan migrate:refresh
+
+ -
+
Create Import/Export Model :
+ php artisan make:import [ModelImport] --model=[Model]
+
+ php artisan make:export [ModelExport] --model=[Model]
+
+
+
# Database
-
Laravel provides two main approaches for interacting with databases: the query builder and the ORM (Object-Relational Mapping) called Eloquent. The configuration for Laravel's database services is located in the application's config/database.php
configuration file.
-
+
+
Laravel provides two main approaches for interacting with databases: the query builder and the ORM (Object-Relational Mapping) called Eloquent. The configuration for Laravel's database services is located in the application's config/database.php
configuration file.
+
• Query Builder :
Laravel Query Builder is a fluent interface for building and running database queries in Laravel without having to write raw SQL statements.
$users = DB::table('users')->select('name', 'email')->get();
@@ -418,8 +431,7 @@ • Query Builder :
'name' => 'John Doe',
'email' => 'john@example.com',
]);
-
-
+
• Eloquent ORM :
Laravel's Eloquent ORM is an ActiveRecord implementation for working with databases in PHP. It allows you to interact with your database tables using PHP objects. Each database table has a corresponding "model" that is used to interact with that table.
User's Model -
diff --git a/markdown.html b/markdown.html
index 1203a8c..63339d8 100644
--- a/markdown.html
+++ b/markdown.html
@@ -41,171 +41,193 @@
Markdown
# Heading
-
-
-
-
- Syntax |
-
-
-
-
- # H1
|
-
-
- ## H2
|
-
-
- ### H3
|
-
-
- #### H4
|
-
-
- ##### H5
|
-
-
- ###### H6
|
-
-
-
-
-
+
+
+
+
+
+ Syntax |
+
+
+
+
+ # H1
|
+
+
+ ## H2
|
+
+
+ ### H3
|
+
+
+ #### H4
|
+
+
+ ##### H5
|
+
+
+ ###### H6
|
+
+
+
+
Heading ID :
### Title {#title-1}
This is [title](https://example.com/#title-1).
-
+
# Text Formatting
-
-
-
-
- Syntax |
-
-
-
-
- ** Strong Text** |
-
-
- * Emphasized Text* |
-
-
- *** Strong & Emphasized Text*** |
-
-
- ` code` |
-
-
- ~~ Strikethrough~~ |
-
-
- == Marked Text== |
-
-
- Subscript~ Text~ |
-
-
- Superscript~ Text~ |
-
-
-
+
+
+
+
+
+ Syntax |
+
+
+
+
+ ** Strong Text** |
+
+
+ * Emphasized Text* |
+
+
+ *** Strong & Emphasized Text*** |
+
+
+ ` code` |
+
+
+ ~~ Strikethrough~~ |
+
+
+ == Marked Text== |
+
+
+ Subscript~ Text~ |
+
+
+ Superscript~ Text~ |
+
+
+
+
# Lists
-
• Ordered List :
-
1. Item
+
+
• Ordered List :
+
1. Item
2. Item
3. Item
-
• Unordered List :
-
- Item
+ • Unordered List :
+ - Item
- Item
- Item
+
# Links
-
[Example](http://www.example.com/)
-
Link with title :
-
[Example](http://www.example.com/ "Example")
+
+
[Example](http://www.example.com/)
+
Link with title :
+
[Example](http://www.example.com/ "Example")
+
# Tables
-
| Item | Cost | Stock |
+
+
| Item | Cost | Stock |
| ------ | ---- | ----- |
| Apple | 100 | 25 |
| Orange | 80 | 50 |
| Mango | 200 | 100 |
-
Aligning Column :
-
Add a colon (:
) to the beginning, end, or both to align the columns left, right, and center, respectively.
-
| Item | Cost | Stock |
+ Aligning Column :
+ Add a colon (:
) to the beginning, end, or both to align the columns left, right, and center, respectively.
+ | Item | Cost | Stock |
| :------ | :----: | -----: |
| Apple | 100 | 25 |
| Orange | 80 | 50 |
| Mango | 200 | 100 |
+
# Images
-
![Example Image](http://www.example.com/example.png)
-
Image with title :
-
![Example Image](http://www.example.com/example.png "Example Image")
+
+
![Example Image](http://www.example.com/example.png)
+
Image with title :
+
![Example Image](http://www.example.com/example.png "Example Image")
+
# Code Block
-
`$var = "text";`
-
```
+
+
`$var = "text";`
+
```
$num1 = 12;
$num2 = 21;
print($num1 + $num2);
```
+
# Blockquote
-
> This is blockquote.
+
+
> This is blockquote.
> This is also
> Blockquote.
-
Nested Blockquote :
-
> This is blockquote.
+ Nested Blockquote :
+ > This is blockquote.
> > This is nested blockquote.
+
# Task List
-
- [x] Task Checked
+
+
- [x] Task Checked
- [ ] Task
- [ ] Task
+
# Definition List
-
Term
+
+
Term
: Term definition 1
: Term definition 2
+
# Horizontal Line
-
---
+
diff --git a/pacman.html b/pacman.html
index f731ae7..7a6664b 100644
--- a/pacman.html
+++ b/pacman.html
@@ -33,7 +33,7 @@
Arch Pacman
# Install Package
-
+
Full System Upgrade
pacman -Syu
@@ -54,7 +54,7 @@
Install Downloaded Package
# Query Package
-
+
Search Package
pacman -Ss [package]
@@ -77,7 +77,7 @@
Installed Package Information
# Remove Package
-
+
Remove Package
pacman -R [package]
@@ -91,7 +91,7 @@
Remove Package, Dependencies & Configs
# Clean System
-
+
List Orphan/Obsolete Packages
pacman -Qtdq