Compare commits

...

19 Commits

Author SHA1 Message Date
b25ab1a4c6 Merge branch 'master' of git.0x42.cloud:christian.morpurgo/MarkdownLivePreview 2025-04-24 16:32:31 +02:00
243555c0c9 change imports move libraries into lib 2025-04-24 16:32:24 +02:00
40da1972af Delete dependencies.json 2025-04-24 14:18:49 +00:00
af7b054d5d Update repository.json 2025-04-24 14:16:27 +00:00
4d3c2a7139 Update repository.json 2025-04-24 14:05:29 +00:00
06d45e51b9 archive 2025-04-24 16:03:43 +02:00
0ddc896fc3 Merge branch 'master' of git.0x42.cloud:christian.morpurgo/MarkdownLivePreview 2025-04-24 16:03:09 +02:00
6f488e0d64 Update repository.json 2025-04-24 13:35:51 +00:00
4eed4934ff Update repository.json 2025-04-24 13:30:58 +00:00
626793e31d Update repository.json 2025-04-24 13:22:41 +00:00
c5493db292 Update repository.json 2025-04-24 13:18:10 +00:00
e6b028506b Update repository.json 2025-04-24 13:11:23 +00:00
2973f7f138 Update repository.json 2025-04-24 12:41:55 +00:00
2a58c22160 Update repository.json 2025-04-24 12:41:44 +00:00
beb6cfe709 Update repository.json 2025-04-24 12:33:51 +00:00
44eb19d923 Update repository.json 2025-04-24 12:32:30 +00:00
0354ddf41d Add channel.json 2025-04-24 12:30:54 +00:00
fede6c2873 Update repository.json 2025-04-24 12:29:18 +00:00
141a7d062c Update repository.json 2025-04-24 12:25:46 +00:00
29 changed files with 25 additions and 12 deletions

Binary file not shown.

7
channel.json Normal file
View File

@ -0,0 +1,7 @@
{
"$schema": "sublime://packagecontrol.io/schemas/channel",
"schema_version": "4.0.0",
"repositories": [
"https://git.0x42.cloud/christian.morpurgo/MarkdownLivePreview/raw/branch/master/repository.json"
]
}

View File

@ -1,7 +0,0 @@
{
"*": {
"*": [
"bs4"
]
}
}

View File

@ -1,3 +1,12 @@
import sys
import os
# Add the 'lib' directory to the Python path BEFORE any other imports
# This ensures bundled libraries are used
lib_path = os.path.join(os.path.dirname(__file__), 'lib')
if lib_path not in sys.path:
sys.path.insert(0, lib_path)
""" Notice how this file is completely independent of sublime text
I think it should be kept this way, just because it gives a bit more organisation,

View File

@ -1,15 +1,19 @@
{
"schema_version": "3",
"schema_version": "3.0.0",
"packages": [
{
"name": "MarkdownLivePreview-Fork",
"name": "MarkdownLivePreview",
"description": "My enhanced live-preview fork of MarkdownLivePreview",
"author": "Christian Morpurgo",
"homepage": "https://git.0x42.cloud/christian.morpurgo/MarkdownLivePreview",
"releases": [
{
"version": "1.0.0",
"url": "https://git.0x42.cloud/christian.morpurgo/MarkdownLivePreview/archive/v0.0.0.zip"
"version": "6.0.0",
"url": "https://git.0x42.cloud/christian.morpurgo/MarkdownLivePreview/releases/download/v6.0.0/MarkdownLivePreview.sublime-package",
"date": "2025-04-24 00:00:00",
"sublime_text": "*"
}
]
}
]
}
}