Updated CSS Context API implementation spec (markdown) authored by RaymondLim's avatar RaymondLim
...@@ -5,7 +5,7 @@ In Brackets we have an HTML utility API ``getTagInfo(editor, cursorPosition)`` t ...@@ -5,7 +5,7 @@ In Brackets we have an HTML utility API ``getTagInfo(editor, cursorPosition)`` t
## getRuleInfo ## ## getRuleInfo ##
The new API will be defined as ``getRuleInfo(editor, cursorPos)``. It takes two arguments -- editor object and cursor position, and returns a rule information object. The new API will be defined as ``getRuleInfo(editor, cursorPos)``. It takes two arguments -- editor object and cursor position, and returns a rule information object.
**Open question** - should we call it *getCssInfo* since some of the context do not apply to a css rule (eg. @charset "u|tf-8" where `|` denotes the cursor location). **Open question** - should we call it *getCssInfo* since some of the context do not apply to a css rule (eg. @charset "u|tf-8" where `|` denotes the cursor location)?
<br /> <br />
The rule information object is defined as follows... The rule information object is defined as follows...
``` ```
...@@ -89,7 +89,7 @@ PROP_NAME Token Type ...@@ -89,7 +89,7 @@ PROP_NAME Token Type
> 1. div {| > 1. div {|
> >
> 2. div { > 2. div {
> | ><br /> |
> >
> 3. div { > 3. div {
> |clip: > |clip:
... ...
......