mirror of
https://github.com/zen-browser/docs.git
synced 2025-07-08 09:20:01 +02:00
Created security.md
This commit is contained in:
parent
61e07e22d8
commit
1c750eef2c
13 changed files with 6571 additions and 12 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -3,3 +3,5 @@
|
||||||
public/
|
public/
|
||||||
quartz/.quartz-cache
|
quartz/.quartz-cache
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
workspace.json
|
||||||
|
.idea/discord.xml
|
||||||
|
|
4
content/.obsidian/community-plugins.json
vendored
4
content/.obsidian/community-plugins.json
vendored
|
@ -1,3 +1,5 @@
|
||||||
[
|
[
|
||||||
"obsidian-style-settings"
|
"obsidian-style-settings",
|
||||||
|
"emoji-shortcodes",
|
||||||
|
"callout-manager"
|
||||||
]
|
]
|
11
content/.obsidian/hotkeys.json
vendored
Normal file
11
content/.obsidian/hotkeys.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"callout-manager:manage-callouts": [
|
||||||
|
{
|
||||||
|
"modifiers": [
|
||||||
|
"Mod",
|
||||||
|
"Shift"
|
||||||
|
],
|
||||||
|
"key": "C"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
11
content/.obsidian/plugins/callout-manager/data.json
vendored
Normal file
11
content/.obsidian/plugins/callout-manager/data.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"callouts": {
|
||||||
|
"custom": [],
|
||||||
|
"settings": {}
|
||||||
|
},
|
||||||
|
"calloutDetection": {
|
||||||
|
"obsidian": true,
|
||||||
|
"theme": true,
|
||||||
|
"snippet": true
|
||||||
|
}
|
||||||
|
}
|
4367
content/.obsidian/plugins/callout-manager/main.js
vendored
Normal file
4367
content/.obsidian/plugins/callout-manager/main.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
10
content/.obsidian/plugins/callout-manager/manifest.json
vendored
Normal file
10
content/.obsidian/plugins/callout-manager/manifest.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"id": "callout-manager",
|
||||||
|
"version": "1.1.0",
|
||||||
|
"description": "Easily create and customize callouts.",
|
||||||
|
"author": "eth-p",
|
||||||
|
"authorUrl": "https://github.com/eth-p",
|
||||||
|
"name": "Callout Manager",
|
||||||
|
"minAppVersion": "1.0.0",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
1
content/.obsidian/plugins/callout-manager/styles.css
vendored
Normal file
1
content/.obsidian/plugins/callout-manager/styles.css
vendored
Normal file
File diff suppressed because one or more lines are too long
9
content/.obsidian/plugins/emoji-shortcodes/data.json
vendored
Normal file
9
content/.obsidian/plugins/emoji-shortcodes/data.json
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"immediateReplace": true,
|
||||||
|
"suggester": true,
|
||||||
|
"historyPriority": true,
|
||||||
|
"historyLimit": 100,
|
||||||
|
"history": [
|
||||||
|
":closed_lock_with_key:"
|
||||||
|
]
|
||||||
|
}
|
2069
content/.obsidian/plugins/emoji-shortcodes/main.js
vendored
Normal file
2069
content/.obsidian/plugins/emoji-shortcodes/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
content/.obsidian/plugins/emoji-shortcodes/manifest.json
vendored
Normal file
11
content/.obsidian/plugins/emoji-shortcodes/manifest.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"id": "emoji-shortcodes",
|
||||||
|
"name": "Emoji Shortcodes",
|
||||||
|
"version": "2.2.0",
|
||||||
|
"minAppVersion": "1.0.0",
|
||||||
|
"description": "This Plugin enables the use of Markdown Emoji Shortcodes :smile:",
|
||||||
|
"author": "phibr0",
|
||||||
|
"authorUrl": "https://github.com/phibr0",
|
||||||
|
"isDesktopOnly": false,
|
||||||
|
"fundingUrl": "https://ko-fi.com/phibr0"
|
||||||
|
}
|
31
content/.obsidian/plugins/emoji-shortcodes/styles.css
vendored
Normal file
31
content/.obsidian/plugins/emoji-shortcodes/styles.css
vendored
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
a[href="https://ko-fi.com/phibr0"] > img
|
||||||
|
{
|
||||||
|
height: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[href="https://ko-fi.com/phibr0"]
|
||||||
|
{
|
||||||
|
transform: translate(0, 5%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.ES-suggester-container {
|
||||||
|
display: flex;
|
||||||
|
place-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ES-shortcode {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ES-suggestion-item {
|
||||||
|
border-top: solid var(--background-secondary) 1px;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ES-sub-setting {
|
||||||
|
padding-left: 2em;
|
||||||
|
}
|
||||||
|
.ES-sub-setting + .ES-sub-setting {
|
||||||
|
padding-left: 0;
|
||||||
|
margin-left: 2em;
|
||||||
|
}
|
49
content/.obsidian/workspace.json
vendored
49
content/.obsidian/workspace.json
vendored
|
@ -4,22 +4,47 @@
|
||||||
"type": "split",
|
"type": "split",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "3001eb2d14193b95",
|
"id": "9dd51e6a4d768a81",
|
||||||
"type": "tabs",
|
"type": "tabs",
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"id": "d9a92a58807c2433",
|
"id": "5cbcc37181f7dca9",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "faq.md",
|
"file": "faq.md",
|
||||||
|
"mode": "preview",
|
||||||
|
"source": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "e371b57606c1681b",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "index.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "a9a3cda41484c700",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "security.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": true
|
"source": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"currentTab": 2
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "vertical"
|
"direction": "vertical"
|
||||||
|
@ -85,7 +110,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "faq.md",
|
"file": "security.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
|
@ -102,7 +127,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outgoing-link",
|
"type": "outgoing-link",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "faq.md",
|
"file": "security.md",
|
||||||
"linksCollapsed": false,
|
"linksCollapsed": false,
|
||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
}
|
}
|
||||||
|
@ -125,7 +150,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "faq.md"
|
"file": "security.md"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -138,6 +163,7 @@
|
||||||
},
|
},
|
||||||
"left-ribbon": {
|
"left-ribbon": {
|
||||||
"hiddenItems": {
|
"hiddenItems": {
|
||||||
|
"callout-manager:Insert Callout": false,
|
||||||
"switcher:Open quick switcher": false,
|
"switcher:Open quick switcher": false,
|
||||||
"graph:Open graph view": false,
|
"graph:Open graph view": false,
|
||||||
"canvas:Create new canvas": false,
|
"canvas:Create new canvas": false,
|
||||||
|
@ -146,12 +172,13 @@
|
||||||
"command-palette:Open command palette": false
|
"command-palette:Open command palette": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "d9a92a58807c2433",
|
"active": "a9a3cda41484c700",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"guides/live-editing.md",
|
"index.md",
|
||||||
"guides/manage-profiles.md",
|
"security.md",
|
||||||
"assets/split-tabs.mp4",
|
"security.md",
|
||||||
"faq.md",
|
"faq.md",
|
||||||
|
"guides/live-editing.md",
|
||||||
"contribute/docs.md",
|
"contribute/docs.md",
|
||||||
"contribute/desktop.md",
|
"contribute/desktop.md",
|
||||||
"contribute/CODE_OF_CONDUCT.md",
|
"contribute/CODE_OF_CONDUCT.md",
|
||||||
|
@ -164,7 +191,6 @@
|
||||||
"benchmarks.md",
|
"benchmarks.md",
|
||||||
"guides/install-macos.md",
|
"guides/install-macos.md",
|
||||||
"building.md",
|
"building.md",
|
||||||
"index.md",
|
|
||||||
"guides/index.md",
|
"guides/index.md",
|
||||||
"themes-store/index.md",
|
"themes-store/index.md",
|
||||||
"assets/macos-installation-guide/kofi-goal.jpg",
|
"assets/macos-installation-guide/kofi-goal.jpg",
|
||||||
|
@ -175,6 +201,7 @@
|
||||||
"guides/generic-optimized.md",
|
"guides/generic-optimized.md",
|
||||||
"contribute",
|
"contribute",
|
||||||
"themes-store/Untitled",
|
"themes-store/Untitled",
|
||||||
|
"guides/manage-profiles.md",
|
||||||
"assets/live-editing",
|
"assets/live-editing",
|
||||||
"assets/live-editing/inspect.png",
|
"assets/live-editing/inspect.png",
|
||||||
"assets/image (3).png",
|
"assets/image (3).png",
|
||||||
|
|
8
content/security.md
Normal file
8
content/security.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Security 🔐
|
||||||
|
---
|
||||||
|
|
||||||
|
> [!attention] Work In Progress
|
||||||
|
> This page is currently **Work In Progress**
|
||||||
|
>
|
||||||
|
> It will be updated with content in the future
|
Loading…
Add table
Add a link
Reference in a new issue