Added
This commit is contained in:
7
.obsidian/plugins/jupymd/data.json
vendored
Normal file
7
.obsidian/plugins/jupymd/data.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"autoSync": true,
|
||||
"bidirectionalSync": false,
|
||||
"pythonInterpreter": "python3",
|
||||
"notebookEditorCommand": "jupyter-lab",
|
||||
"enableCodeBlocks": true
|
||||
}
|
||||
237
.obsidian/plugins/jupymd/main.js
vendored
Normal file
237
.obsidian/plugins/jupymd/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/jupymd/manifest.json
vendored
Normal file
10
.obsidian/plugins/jupymd/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "jupymd",
|
||||
"name": "JupyMD",
|
||||
"version": "1.4.5",
|
||||
"minAppVersion": "1.8.4",
|
||||
"description": "Use Jupyter notebooks in Obsidian.",
|
||||
"author": "Deniz Terzioglu",
|
||||
"authorUrl": "https://d-eniz.github.io/",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
91
.obsidian/plugins/jupymd/styles.css
vendored
Normal file
91
.obsidian/plugins/jupymd/styles.css
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
.edit-block-button {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.code-container {
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
background-color: var(--background-primary);
|
||||
border: 1px solid var(--background-modifier-border-hover);
|
||||
}
|
||||
|
||||
.code-top-bar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background-color: var(--background-primary);
|
||||
padding: 0.15em 1em;
|
||||
}
|
||||
|
||||
.code-buttons {
|
||||
display: flex;
|
||||
gap: 0.5em;
|
||||
}
|
||||
|
||||
.code-lang-label {
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.7em;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.code-output {
|
||||
font-size: 0.9em;
|
||||
font-family: var(--font-monospace), monospace !important;
|
||||
background-color: var(--background-primary) !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.code-output img {
|
||||
max-height: 500px !important;
|
||||
margin: 0.5em 0;
|
||||
border: none;
|
||||
border-radius: 3px;
|
||||
background-color: var(--background-primary) !important;
|
||||
}
|
||||
|
||||
.icon-button {
|
||||
box-shadow: none !important;
|
||||
border: none !important;
|
||||
outline: none !important;
|
||||
background-color: transparent !important;
|
||||
padding: 0 !important;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
|
||||
.grey-icon {
|
||||
transition: color 0.2s;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.grey-icon:hover {
|
||||
cursor: pointer;
|
||||
transition: color 0.2s;
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.code-container .cm-scroller {
|
||||
padding: 1em;
|
||||
background-color: var(--background-primary);
|
||||
overflow: auto;
|
||||
font-family: var(--font-monospace), monospace !important;
|
||||
}
|
||||
|
||||
.code-container .cm-editor {
|
||||
background-color: inherit;
|
||||
font-family: var(--font-monospace), monospace;
|
||||
font-size: 0.9em;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.code-container .cm-content {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
Reference in New Issue
Block a user