htmx-lsp-server 0.1.0

lsp server for htmx-lsp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
The hx-params attribute allows you to filter the parameters that will be submitted with an AJAX request.

The possible values of this attribute are:

    * - Include all parameters (default)
    none - Include no parameters
    not <param-list> - Include all except the comma separated list of parameter names
    <param-list> - Include all the comma separated list of parameter names

  <div hx-get="/example" hx-params="*">Get Some HTML, Including Params</div>

This div will include all the parameters that a POST would, but they will be URL encoded and included in the URL, as per usual with a GET.
Notes

    hx-params is inherited and can be placed on a parent element


[HTMX Reference](https://htmx.org/attributes/hx-params/)