Skip to content

Commit

Permalink
Compatibility for Sublime Text 2 and Sublime Text 3
Browse files Browse the repository at this point in the history
The basic Pandown package will now work in both ST2 and ST3. It's been
tested in both programs, with Pandoc v1.11.1.
  • Loading branch information
Daniel Shannon committed Mar 23, 2013
1 parent 1b848db commit cf6c0ce
Show file tree
Hide file tree
Showing 19 changed files with 1,991 additions and 2,262 deletions.
211 changes: 110 additions & 101 deletions .default-pandoc-config-plain.json
Original file line number Diff line number Diff line change
@@ -1,108 +1,117 @@
{
"pandoc_arguments":
{
"escaped_line_breaks": true,
"blank_before_header": true,
"header_attributes": true,
"auto_identifiers": true,
"implicit_header_references": true,
"blank_line_before_blockquote": true,
"fenced_code_blocks": true,
"line_blocks": true,
"fancy_lists": true,
"startnum": true,
"definition_lists": true,
"example_lists": true,
"simple_tables": true,
"multiline_tables": true,
"grid_tables": true,
"pipe_tables": true,
"table_captions": true,
"pandoc_title_block": true,
"all_symbols_escapable": true,
"intraword_underscores": false,
"strikeout": true,
"superscript": true,
"subscript": true,
"inline_code_attributes": true,
"tex_math_dollars": true,
"raw_html": true,
"markdown_in_html_blocks": true,
"raw_tex": true,
"latex_macros": true,
"implicit_figures": true,
"footnotes": true,
"inline_notes": true,
"citations": true,
"hard_line_breaks": false,
"tex_math_single_backslash": false,
"tex_math_double_backslash": false,
"markdown_attribute": false,
"mmd_title_block": false,
"abbreviations": false,
"autolink_bare_urls": false,
"link_attributes": false,
"mmd_header_identifiers": false,
"data_dir": "",
"markdown_strict": false,
"parse_raw": true,
"smart": true,
"old_dashes": false,
"base_header_level": 1,
"indented_code_classes":
[
],
"normalize": true,
"tab_stop": 4,
"standalone": true,
"template": "",
"variables":
"markdown_extensions":
{
"escaped_line_breaks": true,
"blank_before_header": true,
"header_attributes": true,
"auto_identifiers": true,
"implicit_header_references": true,
"blank_before_blockquote": true,
"fenced_code_blocks": true,
"line_blocks": true,
"fancy_lists": true,
"startnum": true,
"definition_lists": true,
"example_lists": true,
"simple_tables": true,
"multiline_tables": true,
"grid_tables": true,
"pipe_tables": true,
"table_captions": true,
"pandoc_title_block": true,
"all_symbols_escapable": true,
"intraword_underscores": false,
"strikeout": true,
"superscript": true,
"subscript": true,
"inline_code_attributes": true,
"tex_math_dollars": true,
"raw_html": true,
"markdown_in_html_blocks": true,
"raw_tex": true,
"latex_macros": true,
"implicit_figures": true,
"footnotes": true,
"inline_notes": true,
"citations": true,
"hard_line_breaks": false,
"tex_math_single_backslash": false,
"tex_math_double_backslash": false,
"markdown_attribute": false,
"mmd_title_block": false,
"abbreviations": false,
"autolink_bare_uris": false,
"link_attributes": false,
"mmd_header_identifiers": false
},
"no_wrap": false,
"columns": -1,
"table_of_contents": false,
"no_highlight": false,
"highlight_style": "",
"include_in_header": [],
"include_before_body": [],
"include_after_body": [],
"self_contained": false,
"ascii": false,
"html_q_tags": false,
"reference_links": false,
"atx_headers": false,
"chapters": false,
"number_sections": false,
"no_tex_ligatures": false,
"listings": false,
"incremental": false,
"slide_level": -1,
"section_divs": false,
"email_obfuscation": "",
"id_prefix": "",
"title_prefix": "",
"css":
[
],
"reference_odt": "",
"reference_docx": "",
"epub_stylesheet": "",
"epub_coverimage": "",
"epub_metadata": "",
"epub_embed_font": "",
"latex_engine": "",
"bibliography": "",
"csl": "",
"citation_abbreviations": "",
"natbib": false,
"biblatex": false,
"gladtex": false,
"latexmathml": false,
"mathml": false,
"jsmath": false,
"mathjax": false,
"mimetex": false,
"webtex": false
"command_arguments":
{
"data-dir": "",
"parse-raw": true,
"smart": true,
"old-dashes": false,
"base-header-level": false,
"indented-code-classes":
[
],
"default-image-extension": "",
"normalize": true,
"tab-stop": 4,
"standalone": true,
"template": "",
"variables":
{
},
"no-wrap": false,
"columns": false,
"table-of-contents": false,
"no-highlight": false,
"highlight-style": "pygments",
"include-in-header": [],
"include-before-body": [],
"include-after-body": [],
"self-contained": false,
"html-q-tags": false,
"ascii": false,
"reference-links": false,
"atx-headers": false,
"chapters": false,
"number-sections": false,
"number-offset":
[
],
"no-tex-ligatures": false,
"listings": false,
"incremental": false,
"slide-level": false,
"section-divs": false,
"email-obfuscation": "references",
"id-prefix": "",
"title-prefix": "",
"css":
[
],
"reference-odt": "",
"reference-docx": "",
"epub-stylesheet": "",
"epub-coverimage": "",
"epub-metadata": "",
"epub-embed-font": "",
"latex-engine": "",
"bibliography": "",
"csl": "",
"citation-abbreviations": "",
"natbib": false,
"biblatex": false,
"gladtex": false,
"latexmathml": false,
"mathml": false,
"jsmath": false,
"mathjax": false,
"mimetex": false,
"webtex": false
}
}
}
2 changes: 1 addition & 1 deletion Default.sublime-commands
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"command": "pandown_touch_project_config"
},
{
"caption": "Pandown: Build Markdown to Window",
"caption": "Pandown: Build to Window",
"command": "pandown_build",
"args": { "to_window": true}
}
Expand Down
4 changes: 2 additions & 2 deletions Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"command": "open_file", "args":
{
"file": "${packages}/Pandown/README.mdown"
"file": "${packages}/Pandown3/README.mdown"
},
"caption": "README"
},
Expand All @@ -28,7 +28,7 @@
{
"command": "open_file", "args":
{
"file": "${packages}/Pandown/Pandown.sublime-settings"
"file": "${packages}/Pandown3/Pandown.sublime-settings"
},
"caption": "Settings – Default"
},
Expand Down
Loading

0 comments on commit cf6c0ce

Please sign in to comment.