@@ -9,11 +9,11 @@ ST4 | Fully supports the early development releases.
99
1010Contribution from the community is encouraged and can be done in a variety of ways:
1111
12- - Become a sponsor.
13- - Bug reports.
14- - Reviewing code.
15- - Code patches via pull requests.
16- - Documentation improvements via pull requests.
12+ - Become a sponsor.
13+ - Bug reports.
14+ - Reviewing code.
15+ - Code patches via pull requests.
16+ - Documentation improvements via pull requests.
1717
1818## Become a Sponsor :octicons-heart-fill-16:{: .heart-throb}
1919
@@ -25,26 +25,26 @@ any tier you feel comfortable with. No amount is too little. We also accept one
2525
2626## Bug Reports
2727
28- 1 . Please ** read the documentation** and ** search the issue tracker** to try to find the answer to your question
29- ** before** posting an issue.
28+ 1 . Please ** read the documentation** and ** search the issue tracker** to try to find the answer to your question
29+ ** before** posting an issue.
3030
31- 2 . When an issue is created, a [ template] [ template ] will be shown, please fill out the appropriate sections. If the
32- template is not followed, the issue will be marked ` Invalid ` and closed.
31+ 2 . When an issue is created, a [ template] [ template ] will be shown, please fill out the appropriate sections. If the
32+ template is not followed, the issue will be marked ` Invalid ` and closed.
3333
34- 3 . When creating an issue on the repository, please provide as much info as possible:
34+ 3 . When creating an issue on the repository, please provide as much info as possible:
3535
36- - Provide environment information by running ` Preferences->Package Settings->ColorHelper->Support Info ` . The
37- information will be copied to the clipboard; paste the info in issue.
38- - Errors in console.
39- - Detailed description of the problem.
40- - Examples for reproducing the error. You can post pictures, but if specific text or code is required to reproduce
41- the issue, please provide the text in a plain text format for easy copy/paste.
42- - Provide links to 3rd party syntax highlighting package you are using if applicable.
36+ - Provide environment information by running ` Preferences->Package Settings->ColorHelper->Support Info ` . The
37+ information will be copied to the clipboard; paste the info in issue.
38+ - Errors in console.
39+ - Detailed description of the problem.
40+ - Examples for reproducing the error. You can post pictures, but if specific text or code is required to
41+ reproduce the issue, please provide the text in a plain text format for easy copy/paste.
42+ - Provide links to 3rd party syntax highlighting package you are using if applicable.
4343
4444 The more info provided, the greater the chance someone will take the time to answer, implement, or fix the issue.
4545
46- 4 . Be prepared to answer questions and provide additional information if required. Issues in which the creator refuses
47- to respond to follow up questions will be marked as stale and closed.
46+ 4 . Be prepared to answer questions and provide additional information if required. Issues in which the creator refuses
47+ to respond to follow up questions will be marked as stale and closed.
4848
4949## Reviewing Code
5050
@@ -56,17 +56,17 @@ solutions to overcome weakness in the algorithm.
5656Pull requests are welcome, and if you plan on contributing directly to the code, there are a couple of things to be
5757mindful of.
5858
59- 1 . Please describe the change in as much detail as possible so I can understand what is being added or modified.
59+ 1 . Please describe the change in as much detail as possible so I can understand what is being added or modified.
6060
61- 2 . If you are solving a bug that does not already have an issue, please describe the bug in detail and provide info on
62- how to reproduce if applicable (this is good for me and others to reference later when verifying the issue has been
63- resolved).
61+ 2 . If you are solving a bug that does not already have an issue, please describe the bug in detail and provide info on
62+ how to reproduce if applicable (this is good for me and others to reference later when verifying the issue has been
63+ resolved).
6464
65- 3 . Please reference and link related open bugs or feature requests in this pull if applicable.
65+ 3 . Please reference and link related open bugs or feature requests in this pull if applicable.
6666
67- 4 . Make sure you've documented or updated the existing documentation if introducing a new feature or modifying the
68- behavior of an existing feature that a user needs to be aware of. I will not accept new features or changes to
69- existing features if you have not provided documentation describing the feature.
67+ 4 . Make sure you've documented or updated the existing documentation if introducing a new feature or modifying the
68+ behavior of an existing feature that a user needs to be aware of. I will not accept new features or changes to
69+ existing features if you have not provided documentation describing the feature.
7070
7171Continuous integration tests on are run on all pull requests and commits via Travis CI. When making a pull request, the
7272tests will automatically be run, and the request must pass to be accepted. You can (and should) run these tests before
@@ -75,20 +75,21 @@ it is strongly suggested that requesters make an effort to verify before request
7575
7676### Running Validation Tests
7777
78- !!! tip " Tip"
79- If you are running Sublime on a Mac OS or Linux/Unix system, you run all tests by by running the shell script
80- (assuming you have installed your environment fulfills all requirements below):
78+ /// tip | Tip
79+ If you are running Sublime on a Mac OS or Linux/Unix system, you run all tests by by running the shell script
80+ (assuming you have installed your environment fulfills all requirements below):
8181
82- ```
83- chmod +x run_tests.sh
84- ./run_tests.sh
85- ```
82+ ```
83+ chmod +x run_tests.sh
84+ ./run_tests.sh
85+ ```
86+ ///
8687
8788There are a couple of dependencies that must be present before running the tests.
8889
89- 1 . As ST3 is the only current, actively supported version, Python 3.3 must be used to validate the tests.
90+ 1 . As ST3 is the only current, actively supported version, Python 3.3 must be used to validate the tests.
9091
91- 2 . Unit tests are run with ` pytest ` . You can install ` pytest ` via:
92+ 2 . Unit tests are run with ` pytest ` . You can install ` pytest ` via:
9293
9394 ```
9495 pip install pytest
@@ -100,8 +101,8 @@ There are a couple of dependencies that must be present before running the tests
100101 py.test .
101102 ```
102103
103- 3. Linting is performed on the entire project with `flake8`, `flake8-docstrings`, and `pep8-naming`. These can be
104- installed via:
104+ 3. Linting is performed on the entire project with `flake8`, `flake8-docstrings`, and `pep8-naming`. These can be
105+ installed via:
105106
106107 ```
107108 pip install flake8
0 commit comments