CSS Table of Contents
A Sublime Text 3 plugin for css TOC creation
Details
Installs
- Total 2K
- Win 2K
- Mac 339
- Linux 205
Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Linux | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
CSS Table of Contents
Version: 1.1.1
License: LGPL (GNU Lesser General Public License)
License URI: https://www.gnu.org/copyleft/lesser.html
Contributors: Alexey-T
A Sublime Text 3 plugin that helps you with creating neat table of contents on the beginning of your .css file
Add sections, subsections and sub-subsections to your .css file with ease. The plugin keeps track of your cursor and selection when creating section markup. You can add your desired subsections and sub-subsections after you've already add some in. If you don't name your sections, it's done automatically.
How to install
Via Package Control
Open your command palette -> Package Control: Install Package -> CSS Table of Contents
Manual
Go to your packages folder(Preferences -> Browse Packages)
# clone this repo
git clone https://github.com/dingo-d/CSS-Table-of-Contents 'CSS Table of Contents'
Or download the leatest release
and unzip it in a folder named CSS Table of Contents
How to use it
You can right click on the contents of your .css file and add them from the menu 'CSS Table of Contents', from Tools > CSS Table of Contents submenu, or by using hotkeys
ctrl+t, g
for section
ctrl+t, h
for subsection
ctrl+t, j
for subsubsection
ctrl+t, t
for table of contents creation
To do
Navigation through the sections, subsections and sub-subsections.
Changing the Table of contents title in the settings.
And what ever somebody suggests. Please test it and report any bugs or issues, it will be appreciated :)
Revision History
v 1.0.0 Initial release
v 1.1.0 Update
- Bugfix - If ToC already exists, when creating a new one, the old one remained. Now you can create sections after you've created a ToC, and it will be updated.
- Bugfix - Heapq sort using lexicographical order, so the ordering was wrong. Changed the sort according to the answer by Kasramvd
- Update - After creating section, the section name will be selected for easier changing of the section title (section/subsection/sub subsection), suggestion by henriquearthur.
- Update - Refactored the code (PR by Alexey-T), so that the definitions are in a separate file.
v 1.1.1 Update
- Update - Selection view added to a variable
- Update - Added docstrings to css_toc_definitions.py file
- Fix - Minor linter fixes