|
1 |
| -# BB Code Helper 0.1 |
| 1 | +# BB Code Helper 0.2 |
2 | 2 |
|
3 |
| -Adds a context submenu to tag code, quotes, images, and links as BB Code to be pasted into forum posts. |
| 3 | +Adds a context submenu to tag code, quotes, images, and links as BB Code or Markdown. |
4 | 4 |
|
5 | 5 | ## Options
|
6 | 6 |
|
7 | 7 | You may configure how many line breaks you would like inserted between tags when using `Multi-Mode`
|
8 | 8 |
|
9 | 9 | ## Quoting
|
10 | 10 |
|
11 |
| -Highlight text and choose `Quote Selection` from the `BB Code Helper` context submenu to copy the text as a forum quote using BB Code |
| 11 | +Highlight text and choose `Quote Selection` from the `BB Code Helper` context submenu to copy the text as a forum quote using BB Code or Markdown. |
12 | 12 |
|
13 | 13 | ```
|
14 | 14 | [quote]{selection}[/quote]
|
15 | 15 | ```
|
16 | 16 |
|
| 17 | +OR |
| 18 | + |
| 19 | +``` |
| 20 | +> {selection} |
| 21 | +``` |
| 22 | + |
17 | 23 | ## Code Blocks
|
18 | 24 |
|
19 |
| -Highlight text and choose `Copy As Code` from the `BB Code Helper` context submenu to copy the text as a code block using BB Code |
| 25 | +Highlight text and choose `Copy As Code` from the `BB Code Helper` context submenu to copy the text as a code block using BB Code or Markdown. |
20 | 26 |
|
21 | 27 | ```
|
22 | 28 | [code]{selection}[/code]
|
23 | 29 | ```
|
24 | 30 |
|
| 31 | +OR |
| 32 | + |
| 33 | +``` |
| 34 | +``` |
| 35 | +{selection} |
| 36 | +``` |
| 37 | +``` |
| 38 | + |
25 | 39 | ## Links
|
26 | 40 |
|
27 |
| -Right click a link and select `Tag Link` from the `BB Code Helper` context submenu to copy a BB Code representation of the link to the clipboard. If there is text inside the `<a/>`, it will be used as a caption for the BB Code, if not, the simple version will be used. |
| 41 | +Right click a link and select `Tag Link` from the `BB Code Helper` context submenu to copy a BB Code representation of the link to the clipboard. If there is text inside the `<a/>`, it will be used as a caption for the BB Code or Markdown, if not, the simple version will be used. |
28 | 42 |
|
29 | 43 | ```
|
30 | 44 | [url={URL}]{Caption}[/url]
|
|
34 | 48 | [url]{URL}[/url]
|
35 | 49 | ```
|
36 | 50 |
|
| 51 | +OR |
| 52 | + |
| 53 | +``` |
| 54 | +[{caption}]({url}) |
| 55 | +``` |
| 56 | + |
37 | 57 | ## Images
|
38 | 58 |
|
39 |
| -Right click an image and select `Tag Image` or `Tag Image With Link` from the `BB Code Helper` context submenu to copy a BB Code representation of the image to the clipboard. |
| 59 | +Right click an image and select `Tag Image` or `Tag Image With Link` from the `BB Code Helper` context submenu to copy a BB Code or Markdown representation of the image to the clipboard. |
40 | 60 |
|
41 | 61 | ```
|
42 | 62 | [img]{image URL}[/img]
|
43 | 63 | ```
|
44 | 64 |
|
| 65 | +OR |
| 66 | + |
| 67 | +``` |
| 68 | + |
| 69 | +``` |
| 70 | + |
45 | 71 | If tagging the image and the link (if any), the link will be wrapped in `url` BB Code.
|
46 | 72 |
|
47 | 73 | ```
|
48 | 74 | [url={link URL}][img]{image URL}[/img][/url]
|
49 | 75 | ```
|
50 | 76 |
|
| 77 | +OR |
| 78 | + |
| 79 | +``` |
| 80 | +[]({link URL}) |
| 81 | +``` |
| 82 | + |
51 | 83 | ## Multi-Mode
|
52 | 84 |
|
53 | 85 | In this mode, tags are appended to the clipboard, rather than replacing the current clipboard content (default)
|
|
0 commit comments