Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a9f2f951c0 | |||
| 696eb1e1dd | |||
| 6379b673fc | |||
| b521caed0f | |||
| 9bcd725a41 | |||
| aec40dcf2f | |||
| b25ab1a4c6 | |||
| 243555c0c9 | |||
| 40da1972af | |||
| af7b054d5d | |||
| 4d3c2a7139 | |||
| 06d45e51b9 | |||
| 0ddc896fc3 | |||
| 6f488e0d64 | |||
| 4eed4934ff | |||
| 626793e31d | |||
| c5493db292 | |||
| e6b028506b | |||
| 2973f7f138 | |||
| 2a58c22160 | |||
| beb6cfe709 | |||
| 44eb19d923 | |||
| 0354ddf41d | |||
| fede6c2873 | |||
| 141a7d062c |
@ -1,3 +1,9 @@
|
|||||||
|
import os, sys, sublime
|
||||||
|
pkg = os.path.basename(os.path.dirname(__file__))
|
||||||
|
lib = os.path.join(sublime.packages_path(), pkg, "lib")
|
||||||
|
if lib not in sys.path:
|
||||||
|
sys.path.insert(0, lib)
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Terminology
|
Terminology
|
||||||
original_view: the view in the regular editor, without it's own window
|
original_view: the view in the regular editor, without it's own window
|
||||||
@ -8,9 +14,7 @@ preview_window: the window with the markdown file and the preview
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import time
|
import time
|
||||||
import os.path
|
|
||||||
import struct
|
import struct
|
||||||
import sublime
|
|
||||||
import sublime_plugin
|
import sublime_plugin
|
||||||
|
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
|||||||
BIN
MarkdownLivePreview.sublime-package
Normal file
BIN
MarkdownLivePreview.sublime-package
Normal file
Binary file not shown.
7
channel.json
Normal file
7
channel.json
Normal 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"
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"*": {
|
|
||||||
"*": [
|
|
||||||
"bs4"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -15,7 +15,7 @@ import bs4
|
|||||||
|
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
|
||||||
from .lib.markdown2 import Markdown
|
from markdown2 import Markdown
|
||||||
|
|
||||||
__all__ = ("markdown2html",)
|
__all__ = ("markdown2html",)
|
||||||
|
|
||||||
|
|||||||
@ -1,13 +1,17 @@
|
|||||||
{
|
{
|
||||||
"schema_version": "3",
|
"schema_version": "3.0.0",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "MarkdownLivePreview-Fork",
|
"name": "MarkdownLivePreview",
|
||||||
"description": "My enhanced live-preview fork of MarkdownLivePreview",
|
"description": "My enhanced live-preview fork of MarkdownLivePreview",
|
||||||
|
"author": "Christian Morpurgo",
|
||||||
|
"homepage": "https://git.0x42.cloud/christian.morpurgo/MarkdownLivePreview",
|
||||||
"releases": [
|
"releases": [
|
||||||
{
|
{
|
||||||
"version": "1.0.0",
|
"version": "6.0.1",
|
||||||
"url": "https://git.0x42.cloud/christian.morpurgo/MarkdownLivePreview/archive/v0.0.0.zip"
|
"url": "https://git.0x42.cloud/christian.morpurgo/MarkdownLivePreview/releases/download/v6.0.1/MarkdownLivePreview.sublime-package",
|
||||||
|
"date": "2025-04-24 00:00:00",
|
||||||
|
"sublime_text": "*"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user