textbringer-markdown 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +27 -12
- data/lib/textbringer/markdown/version.rb +1 -1
- metadata +11 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd81a3ca2b1f1502c6c28fd1e6e904632cebc1b2a6a30901740e4a8097d27669
|
|
4
|
+
data.tar.gz: bb6dfd132b125520edd4d41a490e42cf935ac0fd29c6a651e18e7d33b7820a90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3198593a7b35208457693fe463f923f6a0e0f4eef9daf707703761889cb1006cf81ba62f37d31152ecdaef18a7cff89aa592bf681e3e7d5ff399b8e865ceda09
|
|
7
|
+
data.tar.gz: 7333813d4f8bbb953140e1dce0d37e0b2dfec511a9cfba4661d2766f8fa29ca4c74789ca38bca18e60e113a68b13266ceba9d20d1b51a231c048b9ef91e2d844
|
data/README.md
CHANGED
|
@@ -1,38 +1,53 @@
|
|
|
1
1
|
# Textbringer::Markdown
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A Textbringer plugin that provides Markdown syntax highlighting with support for headings, code blocks, links, lists, and more.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Features
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- Syntax highlighting for Markdown elements:
|
|
8
|
+
- Headings (`#` through `######`)
|
|
9
|
+
- Bold (`**text**` or `__text__`)
|
|
10
|
+
- Italic (`*text*` or `_text_`)
|
|
11
|
+
- Inline code (`` `code` ``)
|
|
12
|
+
- Code blocks (triple backticks or 4-space indented)
|
|
13
|
+
- Links (`[text](url)`)
|
|
14
|
+
- URLs (`http://` or `https://`)
|
|
15
|
+
- Blockquotes (`> text`)
|
|
16
|
+
- Lists (`-`, `*`, `+`, or numbered)
|
|
17
|
+
- Horizontal rules (`---`, `***`, or `___`)
|
|
18
|
+
|
|
19
|
+
- Automatically activates for `.md` files
|
|
20
|
+
- Configures buffer settings for Markdown editing (spaces instead of tabs, tab width 4)
|
|
8
21
|
|
|
9
|
-
|
|
22
|
+
## Installation
|
|
10
23
|
|
|
11
|
-
Install the gem
|
|
24
|
+
Install the gem by executing:
|
|
12
25
|
|
|
13
26
|
```bash
|
|
14
|
-
|
|
27
|
+
gem install textbringer-markdown
|
|
15
28
|
```
|
|
16
29
|
|
|
17
|
-
|
|
30
|
+
Or add it to your Gemfile:
|
|
18
31
|
|
|
19
32
|
```bash
|
|
20
|
-
|
|
33
|
+
bundle add textbringer-markdown
|
|
21
34
|
```
|
|
22
35
|
|
|
23
36
|
## Usage
|
|
24
37
|
|
|
25
|
-
|
|
38
|
+
The plugin is automatically loaded when you start Textbringer. Simply open any `.md` file and syntax highlighting will be applied automatically.
|
|
39
|
+
|
|
40
|
+
No additional configuration is required.
|
|
26
41
|
|
|
27
42
|
## Development
|
|
28
43
|
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake
|
|
44
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
45
|
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
46
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
32
47
|
|
|
33
48
|
## Contributing
|
|
34
49
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
50
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/yancya/textbringer-markdown.
|
|
36
51
|
|
|
37
52
|
## License
|
|
38
53
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: textbringer-markdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yancya
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: textbringer
|
|
@@ -48,7 +48,15 @@ metadata:
|
|
|
48
48
|
allowed_push_host: https://rubygems.org
|
|
49
49
|
homepage_uri: https://github.com/yancya/textbringer-markdown
|
|
50
50
|
source_code_uri: https://github.com/yancya/textbringer-markdown
|
|
51
|
-
post_install_message:
|
|
51
|
+
post_install_message: |
|
|
52
|
+
textbringer-markdown is deprecated and no longer maintained.
|
|
53
|
+
Please use textbringer-tree-sitter instead:
|
|
54
|
+
https://github.com/yancya/textbringer-tree-sitter
|
|
55
|
+
|
|
56
|
+
Language support has been consolidated into textbringer-tree-sitter.
|
|
57
|
+
Quick start:
|
|
58
|
+
gem install textbringer-tree-sitter
|
|
59
|
+
textbringer-tree-sitter get markdown
|
|
52
60
|
rdoc_options: []
|
|
53
61
|
require_paths:
|
|
54
62
|
- lib
|