Skip to content

Commit

Permalink
grunnur
Browse files Browse the repository at this point in the history
  • Loading branch information
osk committed Aug 16, 2024
0 parents commit fd4f757
Show file tree
Hide file tree
Showing 29 changed files with 1,696 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
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
30 changes: 30 additions & 0 deletions .eslintrc.js
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,
},
};
18 changes: 18 additions & 0 deletions .gitignore
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/
44 changes: 44 additions & 0 deletions .markdownlint.json
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
}
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.md
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme: jekyll-theme-minimal
26 changes: 26 additions & 0 deletions lykilhugtok.md
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
Loading

0 comments on commit fd4f757

Please sign in to comment.