Skip to content

Commit 9aa4bcd

Browse files
Docs added
1 parent df5f930 commit 9aa4bcd

File tree

5 files changed

+37
-0
lines changed

5 files changed

+37
-0
lines changed

.nojekyll

Whitespace-only changes.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Java Design Patterns
2+
3+
## Contents:
4+
1. [Strategy Pattern](./docs/Strategy.md)
5+
6+
7+
### Author: Prathamesh Dhande

docs/Strategy.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Strategy Pattern
2+
3+
Comming Soon

docs/_sidebar.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1. Side bar

index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Java Design Pattern</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
<meta name="description" content="Description">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
9+
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
10+
</head>
11+
<body>
12+
<div id="app">Loading...</div>
13+
<script>
14+
window.$docsify = {
15+
name: 'Design Pattern in Java',
16+
repo: '',
17+
loadSidebar:true,
18+
auto2top: true,
19+
relativePath: true,
20+
repo: 'https://github.com/PrathameshDhande22/Java-Tutorial'
21+
}
22+
</script>
23+
<!-- Docsify v4 -->
24+
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)