-
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.
- Loading branch information
0 parents
commit fd4f757
Showing
29 changed files
with
1,696 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
quote_type = single | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,30 @@ | ||
module.exports = { | ||
extends: 'airbnb-base', | ||
plugins: ['markdown', 'html'], | ||
overrides: [ | ||
{ | ||
files: ['**/*.md'], | ||
processor: 'markdown/markdown', | ||
}, | ||
], | ||
env: { | ||
browser: true, | ||
}, | ||
rules: { | ||
// dæmi verða læsilegri ef þau eru ekki með löngum línum | ||
'max-len': ['error', { code: 80, ignoreUrls: true }], | ||
|
||
// console.log mikið notað í dæmum | ||
'no-console': 0, | ||
|
||
// leyfa i++ í for | ||
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }], | ||
|
||
'function-paren-newline': ['error', 'consistent'], | ||
|
||
// viljum frekar named export | ||
'import/prefer-default-export': 0, | ||
|
||
'no-continue': 0, | ||
}, | ||
}; |
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,18 @@ | ||
node_modules/ | ||
package-lock.json | ||
/_static | ||
|
||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
.env | ||
|
||
scratchpad.md | ||
temp/ |
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,44 @@ | ||
{ | ||
"default": true, | ||
"MD004": { | ||
"style": "consistent" | ||
}, | ||
"MD013": false, | ||
"MD025": false, | ||
"MD033": { | ||
"allowed_elements": [ | ||
"ol", | ||
"li", | ||
"div", | ||
"dl", | ||
"dd", | ||
"dt", | ||
"table", | ||
"tr", | ||
"th", | ||
"thead", | ||
"tbody", | ||
"td", | ||
"tfoot", | ||
"strong", | ||
"input", | ||
"form", | ||
"label", | ||
"fieldset", | ||
"legend", | ||
"b", | ||
"br", | ||
"h2", | ||
"p", | ||
"font", | ||
"marquee", | ||
"iframe", | ||
"button", | ||
"object" | ||
] | ||
}, | ||
"MD035": false, | ||
"no-hard-tabs": false, | ||
"no-bare-urls": false, | ||
"no-trailing-punctuation": false | ||
} |
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 @@ | ||
*.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
theme: jekyll-theme-minimal |
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,26 @@ | ||
# Lykilhugtök | ||
|
||
Samansafn af öllum lykilhugtökum í áfanganum. | ||
|
||
## Vika 1 | ||
|
||
[Vikublað 1](vikur/vika-01.md) | ||
|
||
- GUI og CLI | ||
- Textaritlar | ||
- Stafasett | ||
- UTF-8 | ||
- Internetið | ||
- Vefurinn | ||
- Vefþjónn | ||
- URL | ||
- Vefsíða | ||
- Vafri | ||
- Framendi | ||
- HyperText | ||
- Markup Language | ||
- Markdown | ||
- HTML | ||
- W3C | ||
- Vefstaðlar | ||
- Netlify |
Oops, something went wrong.