diff --git a/elpa/ac-html-20151005.731/ac-haml.el b/elpa/ac-html-20151005.731/ac-haml.el deleted file mode 100644 index d5385a4..0000000 --- a/elpa/ac-html-20151005.731/ac-haml.el +++ /dev/null @@ -1,103 +0,0 @@ -;;; ac-haml.el --- auto complete source for html tag and attributes - -;; Copyright (C) 2014 - 2015 Zhang Kai Yu - -;; Author: Zhang Kai Yu -;; Keywords: html, auto-complete, rails, ruby - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - -;;; Commentary: - -;; Configuration: - -;; - -;;; Code: - -(require 'ac-html-core) -(require 'ac-slim) ;; haml and slim share some common things - -(defun ac-haml-attr-prefix () - (if (or (ac-slim-inside-ruby-code) - (ac-slim-inside-non-slim-block)) - nil - (save-restriction - (save-excursion - (narrow-to-region - (line-beginning-position) (line-end-position)) - (let ((origin (point)) (right nil) (left nil) (thing nil)) - ;; Go to next whitespace or line end - (re-search-forward "\\( \\|$\\)" nil t) - (if (equal (char-before) ? ) - (backward-char)) - (setq right (point)) - (goto-char origin) - ;; Go to previous whitespace or line beginning - (re-search-backward "\\( \\|^\\)" nil t) - (if (equal (char-after) ? ) - (forward-char)) - (setq left (point)) - ;; Figure out what at point - (setq thing (buffer-substring-no-properties left right)) - (if (string= (substring thing 0 1) ":") - (1+ left) - nil)))))) - -(defun ac-haml-attrv-prefix () - (if (re-search-backward "\\w+ *=[>]? *[\"]\\([^\"]+[ ]\\|\\)\\(.*\\)" nil t) - (match-beginning 2))) - -(defun ac-haml-class-prefix () - (ac-slim-class-prefix)) - -(defun ac-haml-id-prefix () - (ac-slim-id-prefix)) - -(defun ac-haml-current-tag () - "Return current haml tag user is typing on." - (save-excursion - (save-match-data - (re-search-backward "^[\t ]*%\\(\\w+\\)" nil t) - (match-string 1)))) - -(defun ac-haml-current-tag () - "Return current haml tag user is typing on." - (let* ((line (buffer-substring-no-properties (line-beginning-position) - (line-end-position))) - (match-result (s-match "^[\t ]*%\\(\\w+\\)" line))) - (if match-result - (nth 1 match-result) - "div"))) - -(defun ac-haml-current-attr () - "Return current html tag's attribute user is typing on." - (save-excursion (re-search-backward "[^a-z-]\\([a-z-]+\\) *=" nil t)) - (match-string 1)) - -(defun ac-haml-attrv-prefix () - (if (re-search-backward "\\w+ *=[>]? *[\"]\\([^\"]+[ ]\\|\\)\\(.*\\)" nil t) - (match-beginning 2))) - -(ac-html-define-ac-source "haml" - :tag-prefix "^[ \t]*%\\(.*\\)" - :attr-prefix ac-haml-attr-prefix - :attrv-prefix ac-haml-attrv-prefix - :class-prefix ac-haml-class-prefix - :id-prefix ac-haml-id-prefix - :current-tag-func ac-haml-current-tag - :current-attr-func ac-haml-current-attr) - -(provide 'ac-haml) -;;; ac-haml.el ends here diff --git a/elpa/ac-html-20151005.731/ac-haml.elc b/elpa/ac-html-20151005.731/ac-haml.elc deleted file mode 100644 index 4c37545..0000000 Binary files a/elpa/ac-html-20151005.731/ac-haml.elc and /dev/null differ diff --git a/elpa/ac-html-20151005.731/ac-html-autoloads.el b/elpa/ac-html-20151005.731/ac-html-autoloads.el deleted file mode 100644 index 78fc1a2..0000000 --- a/elpa/ac-html-20151005.731/ac-html-autoloads.el +++ /dev/null @@ -1,90 +0,0 @@ -;;; ac-html-autoloads.el --- automatically extracted autoloads -;; -;;; Code: - -(add-to-list 'load-path (directory-file-name - (or (file-name-directory #$) (car load-path)))) - - -;;;### (autoloads nil "ac-haml" "ac-haml.el" (0 0 0 0)) -;;; Generated autoloads from ac-haml.el - -(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ac-haml" '("ac-haml-"))) - -;;;*** - -;;;### (autoloads nil "ac-html" "ac-html.el" (0 0 0 0)) -;;; Generated autoloads from ac-html.el - -(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ac-html" '("ac-html-"))) - -;;;*** - -;;;### (autoloads nil "ac-html-core" "ac-html-core.el" (0 0 0 0)) -;;; Generated autoloads from ac-html-core.el - -(autoload 'ac-html-define-data-provider "ac-html-core" "\ -Define ac-html data provider with this macro. -This macro is buggy and cannot be used now. - -\(fn PROVIDER &rest PAIRS)" nil t) - -(function-put 'ac-html-define-data-provider 'lisp-indent-function '1) - -(autoload 'ac-html-enable-data-provider "ac-html-core" "\ -Enable data provider PROVIDER. - -\(fn PROVIDER)" nil nil) - -(autoload 'ac-html-define-ac-source "ac-html-core" "\ -Define ac-html lang with this macro. - -\(fn LANG &rest PAIRS)" nil t) - -(function-put 'ac-html-define-ac-source 'lisp-indent-function '1) - -(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ac-html-core" '("ac-html-"))) - -;;;*** - -;;;### (autoloads nil "ac-html-default-data-provider" "ac-html-default-data-provider.el" -;;;;;; (0 0 0 0)) -;;; Generated autoloads from ac-html-default-data-provider.el - -(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ac-html-default-data-provider" '("ac-html-" "web-completion-data-"))) - -;;;*** - -;;;### (autoloads nil "ac-html-testing-data-provider" "ac-html-testing-data-provider.el" -;;;;;; (0 0 0 0)) -;;; Generated autoloads from ac-html-testing-data-provider.el - -(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ac-html-testing-data-provider" '("ac-html-testing-"))) - -;;;*** - -;;;### (autoloads nil "ac-jade" "ac-jade.el" (0 0 0 0)) -;;; Generated autoloads from ac-jade.el - -(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ac-jade" '("ac-jade-"))) - -;;;*** - -;;;### (autoloads nil "ac-slim" "ac-slim.el" (0 0 0 0)) -;;; Generated autoloads from ac-slim.el - -(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ac-slim" '("ac-slim-"))) - -;;;*** - -;;;### (autoloads nil nil ("ac-html-pkg.el") (0 0 0 0)) - -;;;*** - -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; no-update-autoloads: t -;; coding: utf-8 -;; End: -;;; ac-html-autoloads.el ends here diff --git a/elpa/ac-html-20151005.731/ac-html-core.el b/elpa/ac-html-20151005.731/ac-html-core.el deleted file mode 100644 index 275a3b6..0000000 --- a/elpa/ac-html-20151005.731/ac-html-core.el +++ /dev/null @@ -1,263 +0,0 @@ -;;; ac-html-core.el --- auto complete html core -*- lexical-binding: t; -*- - -;; Copyright (C) 2015 Zhang Kai Yu - -;; Author: Zhang Kai Yu - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - -;;; Commentary: - -;; - -;;; Code: - -(require 'auto-complete) -(require 'cl-lib) -(require 'dash) - -;;; Customization - -(defgroup auto-complete-html nil - "HTML Auto Complete." - :group 'auto-complete - :prefix "ac-html-") - -;;; Variables - -(defvar ac-html-data-providers nil "Completion data providers.") - -(defvar-local ac-html-enabled-data-providers nil - "The enabled data providers of current buffer.") - -(defvar-local ac-html-current-tag-function nil - "The function to find current tag.") - -(defvar-local ac-html-current-attr-function nil - "The function to find current attr.") - -;;; Provider - -;;;###autoload -(defmacro ac-html-define-data-provider (provider &rest pairs) - "Define ac-html data provider with this macro. -This macro is buggy and cannot be used now." - (declare (indent 1) (debug t)) - (let (tag-func attr-func attrv-func id-func class-func tag-doc-func - attr-doc-func attrv-doc-func id-doc-func class-doc-func) - (let (label value) - (while (not (= 0 (length pairs))) - (setq label (pop pairs)) - (setq value (pop pairs)) - (and (equal :tag-func label) (setq tag-func value)) - (and (equal :attr-func label) (setq attr-func value)) - (and (equal :attrv-func label) (setq attrv-func value)) - (and (equal :id-func label) (setq id-func value)) - (and (equal :class-func label) (setq class-func value)) - (and (equal :tag-doc-func label) (setq tag-doc-func value)) - (and (equal :attr-doc-func label) (setq attr-doc-func value)) - (and (equal :attrv-doc-func label) (setq attrv-doc-func value)) - (and (equal :id-doc-func label) (setq id-doc-func value)) - (and (equal :class-doc-func label) (setq class-doc-func value)))) - `(progn - (add-to-list 'ac-html-data-providers ,provider) - (put ,provider :tag-func ,tag-func) - (put ,provider :attr-func ,attr-func) - (put ,provider :attrv-func ,attrv-func) - (put ,provider :id-func ,id-func) - (put ,provider :class-func ,class-func) - (put ,provider :tag-doc-func ,tag-doc-func) - (put ,provider :attr-doc-func ,attr-doc-func) - (put ,provider :attrv-doc-func ,attrv-doc-func) - (put ,provider :id-doc-func ,id-doc-func) - (put ,provider :class-doc-func ,class-doc-func)))) - -;;;###autoload -(defun ac-html-enable-data-provider (provider) - "Enable data provider PROVIDER." - (add-to-list 'ac-html-enabled-data-providers provider)) - -(defun ac-html-query-data-provider (provider key) - (get provider key)) - -;;; Language (Adaptor) - -;;;###autoload -(defmacro ac-html-define-ac-source (lang &rest pairs) - "Define ac-html lang with this macro." - (declare (indent 1) (debug t)) - (let (tag-prefix attr-prefix attrv-prefix id-prefix class-prefix - current-tag-func current-attr-func) - (let (label value) - (while (not (= 0 (length pairs))) - (setq label (pop pairs)) - (setq value (pop pairs)) - (and (equal :tag-prefix label) (setq tag-prefix value)) - (and (equal :attr-prefix label) (setq attr-prefix value)) - (and (equal :attrv-prefix label) (setq attrv-prefix value)) - (and (equal :id-prefix label) (setq id-prefix value)) - (and (equal :class-prefix label) (setq class-prefix value)) - (and (equal :current-tag-func label) (setq current-tag-func value)) - (and (equal :current-attr-func label) (setq current-attr-func value)))) - - `(progn - (defun ,(intern (format "ac-%s-setup" lang)) () - ,(format "Setup for ac-html to provide completion for %s language." lang) - (setq ac-html-current-tag-function (quote ,current-tag-func)) - (setq ac-html-current-attr-function (quote ,current-attr-func))) - ,(if tag-prefix - `(ac-define-source ,(format "%s-%s" lang "tag") - '((candidates . ac-html-all-tag-candidates) - (prefix . ,tag-prefix) - (document . ac-html-tag-documentation) - (symbol . "t")))) - ,(if attr-prefix - `(ac-define-source ,(format "%s-%s" lang "attr") - '((candidates . ac-html-all-attr-candidates) - (prefix . ,attr-prefix) - (document . ac-html-attr-documentation) - (symbol . "a")))) - ,(if attrv-prefix - `(ac-define-source ,(format "%s-%s" lang "attrv") - '((candidates . ac-html-all-attrv-candidates) - (prefix . ,attrv-prefix) - (document . ac-html-attrv-documentation) - (symbol . "v")))) - ,(if id-prefix - `(ac-define-source ,(format "%s-%s" lang "id") - '((candidates . ac-html-all-id-candidates) - (prefix . ,id-prefix) - (document . ac-html-id-documentation) - (symbol . "i")))) - ,(if class-prefix - `(ac-define-source ,(format "%s-%s" lang "class") - '((candidates . ac-html-all-class-candidates) - (prefix . ,class-prefix) - (document . ac-html-class-documentation) - (symbol . "c")))) - ))) - -;;; Data - -(defun ac-html-all-tag-candidates () - "All tag candidates get from data providers." - (let (list func) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :tag-func)) - (if func (setq list (-concat list (funcall func))))) - list)) - -(defun ac-html-all-attr-candidates () - "All attr candidates get from data providers." - (let (list func tag) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :attr-func)) - (setq tag (funcall ac-html-current-tag-function)) - (if func (setq list (-concat list (funcall func tag))))) - list)) - -(defun ac-html-all-attrv-candidates () - "All attrv candidates get from data providers." - (let (list func tag attr) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :attrv-func)) - (setq tag (funcall ac-html-current-tag-function)) - (setq attr (funcall ac-html-current-attr-function)) - (if func (setq list (-concat list (funcall func tag attr))))) - (if (string= attr "class") - (setq list (-concat list (ac-html-all-class-candidates)))) - (if (string= attr "id") - (setq list (-concat list (ac-html-all-id-candidates)))) - list)) - -(defun ac-html-all-id-candidates () - "" - (let (list func) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :id-func)) - (if func (setq list (-concat list (funcall func))))) - list)) - -(defun ac-html-all-class-candidates () - "" - (let (list func) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :class-func)) - (if func (setq list (-concat list (funcall func))))) - list)) - -(defun ac-html-tag-documentation (tag) - "Not documented yet." - (catch 'return-val - (let (doc func) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :tag-doc-func)) - (if func - (progn - (setq doc (funcall func tag)) - (if doc (throw 'return-val doc)))))))) - -(defun ac-html-attr-documentation (attr) - "Not documented yet." - (catch 'return-val - (let (doc func tag) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :attr-doc-func)) - (if func - (progn - (setq tag (funcall ac-html-current-tag-function)) - (setq doc (funcall func tag attr)) - (if doc (throw 'return-val doc)))))))) - -(defun ac-html-attrv-documentation (attrv) - "Not documented yet." - (catch 'return-val - (let (doc func tag attr) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :attrv-doc-func)) - (if func - (progn - (setq tag (funcall ac-html-current-tag-function)) - (setq attr (funcall ac-html-current-attr-function)) - (setq doc (funcall func tag attr attrv)) - (if doc (throw 'return-val doc))))) - (if (string= attr "class") - (throw 'return-val (ac-html-class-documentation attrv))) - (if (string= attr "id") - (throw 'return-val (ac-html-id-documentation attrv)))))) - -(defun ac-html-id-documentation (id) - "" - (catch 'return-val - (let (doc func) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :id-doc-func)) - (if func - (progn - (setq doc (funcall func id)) - (if doc (throw 'return-val doc)))))))) - -(defun ac-html-class-documentation (class) - "" - (catch 'return-val - (let (doc func) - (dolist (provider ac-html-enabled-data-providers) - (setq func (ac-html-query-data-provider provider :class-doc-func)) - (if func - (progn - (setq doc (funcall func class)) - (if doc (throw 'return-val doc)))))))) - -(provide 'ac-html-core) -;;; ac-html-core.el ends here diff --git a/elpa/ac-html-20151005.731/ac-html-core.elc b/elpa/ac-html-20151005.731/ac-html-core.elc deleted file mode 100644 index 254a7a3..0000000 Binary files a/elpa/ac-html-20151005.731/ac-html-core.elc and /dev/null differ diff --git a/elpa/ac-html-20151005.731/ac-html-default-data-provider.el b/elpa/ac-html-20151005.731/ac-html-default-data-provider.el deleted file mode 100644 index 2a8ed7a..0000000 --- a/elpa/ac-html-20151005.731/ac-html-default-data-provider.el +++ /dev/null @@ -1,139 +0,0 @@ -(require 'ac-html-core) -(require 'f) - -;;; web-completion-data helpers - -(defconst web-completion-data-package-dir - (file-name-directory (or load-file-name (buffer-file-name))) - "The directory where `web-completion-data' package exists.") - -(defconst web-completion-data-html-source-dir - (expand-file-name "completion-data" web-completion-data-package-dir) - "The directory where basic completion source of `web-completion-data' - exists.") - -(defconst web-completion-data-tag-list-file - (f-expand "html-tag-list" web-completion-data-html-source-dir)) - -(defconst web-completion-data-tag-doc-dir - (f-expand "html-tag-short-docs" web-completion-data-html-source-dir)) - -(defun web-completion-data-tag-doc-file (tag) - (f-expand tag web-completion-data-tag-doc-dir)) - -(defconst web-completion-data-attr-list-dir - (f-expand "html-attributes-list" web-completion-data-html-source-dir)) - -(defconst web-completion-data-attr-global-list-file - (f-expand "global" web-completion-data-attr-list-dir)) - -(defun web-completion-data-attr-list-file (tag) - (f-expand tag web-completion-data-attr-list-dir)) - -(defconst web-completion-data-attr-doc-dir - (f-expand "html-attributes-short-docs" web-completion-data-html-source-dir)) - -(defun web-completion-data-attr-global-doc-file (attr) - (f-expand (format "global-%s" attr) web-completion-data-attr-doc-dir)) - -(defun web-completion-data-attr-doc-file (tag attr) - (f-expand (format "%s-%s" tag attr) web-completion-data-attr-doc-dir)) - -(defconst web-completion-data-attrv-list-dir - (f-expand "html-attrv-list" web-completion-data-html-source-dir)) - -(defun web-completion-data-attrv-list-file (tag attr) - (f-expand (format "%s-%s" tag attr) web-completion-data-attrv-list-dir)) - -(defun web-completion-data-attrv-global-list-file (attr) - (f-expand (format "global-%s" attr) web-completion-data-attrv-list-dir)) - -(defconst web-completion-data-attrv-doc-dir - (f-expand "html-attrv-docs" web-completion-data-html-source-dir)) - -(defun web-completion-data-attrv-global-doc-file (attr attrv) - (f-expand (format "global-%s-%s" attr (url-hexify-string attrv)) - web-completion-data-attrv-doc-dir)) - -(defun web-completion-data-attrv-doc-file (tag attr attrv) - (f-expand (format "%s-%s-%s" tag attr (url-hexify-string attrv)) - web-completion-data-attrv-doc-dir)) - -;;; cached data - -(defvar ac-html--tags-list nil "The list of tags.") -(defvar ac-html--global-attributes nil "The list of global attrs.") -(defvar ac-html--cached-attributes-alist nil) - -;;; helper functions - -(defun ac-html--load-list-from-file (filepath) - "Return a list separated by \\n from FILEPATH." - (if (file-exists-p filepath) - (with-current-buffer (find-file-noselect filepath) - (unwind-protect - (split-string - (save-restriction - (widen) - (buffer-substring-no-properties (point-min) (point-max))) - "\n" t) - (kill-buffer))) - nil)) - -(defun ac-html--read-file (file) - "If file exist, return string of contents, otherwise return nil." - (if (file-exists-p file) - (with-temp-buffer - (insert-file-contents file) - (buffer-string)) - nil)) - -;;; functions - -(defun ac-html-default-tags () - (if ac-html--tags-list - ac-html--tags-list - (setq ac-html--tags-list - (ac-html--load-list-from-file web-completion-data-tag-list-file)))) - -(defun ac-html-default-attrs (tag) - (unless ac-html--global-attributes - (setq ac-html--global-attributes - (ac-html--load-list-from-file - web-completion-data-attr-global-list-file))) - (let (list attr-file) - (setq attr-file (web-completion-data-attr-list-file tag)) - (if (file-exists-p attr-file) - (setq list (ac-html--load-list-from-file - attr-file))) - (append list ac-html--global-attributes))) - -(defun ac-html-default-attrvs (tag attr) - (append - (ac-html--load-list-from-file - (web-completion-data-attrv-list-file tag attr)) - (ac-html--load-list-from-file - (web-completion-data-attrv-global-list-file attr)))) - -(defun ac-html-default-tag-doc (tag) - (ac-html--read-file (web-completion-data-tag-doc-file tag))) - -(defun ac-html-default-attr-doc (tag attr) - (or (ac-html--read-file (web-completion-data-attr-doc-file tag attr)) - (ac-html--read-file (web-completion-data-attr-global-doc-file attr)))) - -(defun ac-html-default-attrv-doc (tag attr attrv) - (or (ac-html--read-file (web-completion-data-attrv-doc-file tag attr attrv)) - (ac-html--read-file - (web-completion-data-attrv-global-doc-file attr attrv)))) - -(ac-html-define-data-provider 'ac-html-default-data-provider - :tag-func 'ac-html-default-tags - :attr-func 'ac-html-default-attrs - :attrv-func 'ac-html-default-attrvs - :tag-doc-func 'ac-html-default-tag-doc - :attr-doc-func 'ac-html-default-attr-doc - :attrv-doc-func 'ac-html-default-attrv-doc) - -(provide 'ac-html-default-data-provider) -;;; ac-html-default-data-provider.el ends here diff --git a/elpa/ac-html-20151005.731/ac-html-default-data-provider.elc b/elpa/ac-html-20151005.731/ac-html-default-data-provider.elc deleted file mode 100644 index 2163cf0..0000000 Binary files a/elpa/ac-html-20151005.731/ac-html-default-data-provider.elc and /dev/null differ diff --git a/elpa/ac-html-20151005.731/ac-html-pkg.el b/elpa/ac-html-20151005.731/ac-html-pkg.el deleted file mode 100644 index cc74141..0000000 --- a/elpa/ac-html-20151005.731/ac-html-pkg.el +++ /dev/null @@ -1,15 +0,0 @@ -(define-package "ac-html" "20151005.731" "auto complete source for html tags and attributes" - '((auto-complete "1.4") - (s "1.9") - (f "0.17") - (dash "2.10")) - :commit "668154cba123c321d1b07c2dc8b26d14092253b8" :keywords - '("html" "auto-complete" "slim" "haml" "jade") - :authors - '(("Zhang Kai Yu" . "yeannylam@gmail.com")) - :maintainer - '("Zhang Kai Yu" . "yeannylam@gmail.com") - :url "https://github.com/cheunghy/ac-html") -;; Local Variables: -;; no-byte-compile: t -;; End: diff --git a/elpa/ac-html-20151005.731/ac-html-testing-data-provider.el b/elpa/ac-html-20151005.731/ac-html-testing-data-provider.el deleted file mode 100644 index 43299e0..0000000 --- a/elpa/ac-html-20151005.731/ac-html-testing-data-provider.el +++ /dev/null @@ -1,17 +0,0 @@ -(require 'ac-html-core) - -(defun ac-html-testing-tags () - '("tag1" "tag2" "tag3")) - -(defun ac-html-testing-classes () - '("class1" "class2")) - -(defun ac-html-testing-ids () - '("id1" "id2" "id3")) - -(ac-html-define-data-provider 'ac-html-testing-data-provider - :tag-func 'ac-html-testing-tags - :class-func 'ac-html-testing-classes - :id-func 'ac-html-testing-ids) - -(provide 'ac-html-testing-data-provider) diff --git a/elpa/ac-html-20151005.731/ac-html-testing-data-provider.elc b/elpa/ac-html-20151005.731/ac-html-testing-data-provider.elc deleted file mode 100644 index 41762dc..0000000 Binary files a/elpa/ac-html-20151005.731/ac-html-testing-data-provider.elc and /dev/null differ diff --git a/elpa/ac-html-20151005.731/ac-html.el b/elpa/ac-html-20151005.731/ac-html.el deleted file mode 100644 index efebf94..0000000 --- a/elpa/ac-html-20151005.731/ac-html.el +++ /dev/null @@ -1,89 +0,0 @@ -;;; ac-html.el --- auto complete source for html tags and attributes - -;; Copyright (C) 2014 - 2015 Zhang Kai Yu - -;; Author: Zhang Kai Yu -;; Version: 0.4.alpha -;; Keywords: html, auto-complete, slim, haml, jade -;; Package-Requires: ((auto-complete "1.4") (s "1.9") (f "0.17") (dash "2.10")) -;; URL: https://github.com/cheunghy/ac-html - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - -;;; Commentary: - -;; - -;;; Code: - -(require 'ac-html-core) - -(defun ac-html--inside-attrv () - "Return t if cursor inside attrv aka string. -Has bug for quoted quote." - (save-match-data - (save-excursion - (re-search-backward "\\w+[\n\t ]*=[\n\t ]*[\"']\\([^\"']*\\)" nil t)) - (equal (match-end 1) (point)))) - -(defun ac-html--inside-comment () - "Return t if cursor inside comment. -Not implemented yet.") - -;;; auto complete HTML for html-mode and web-mode - -(defun ac-html-tag-prefix () - (if (ac-html--inside-attrv) - nil - (save-match-data - (save-excursion - (re-search-backward "<\\([^\n\t >'\"]*\\)" nil t)) - (match-beginning 1)))) - -(defun ac-html-attr-prefix () - (if (ac-html--inside-attrv) - nil - (save-match-data - (save-excursion - (re-search-backward "<\\w[^>]*[[:space:]]+\\(.*\\)" nil t)) - (match-beginning 1)))) - -(defun ac-html-value-prefix () - (if (re-search-backward "\\w=[\"]\\([^\"]+[ ]\\|\\)\\(.*\\)" nil t) - (match-beginning 2))) - -(defun ac-html-current-tag () - "Return current html tag user is typing on. -There is a bug if attrv contains string like this -;; Keywords: html, auto-complete, jade, node - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - -;;; Commentary: - -;; Configuration: -;; - -;;; Code: - -(require 'ac-html-core) - -(defun ac-jade-current-tag () - "Return current jade tag user is typing on." - (save-excursion (re-search-backward "^[\t ]*\\(\\w+\\)" nil t)) - (match-string 1)) - -(defun ac-jade-current-attr () - "Return current html tag's attribute user is typing on." - (save-excursion (re-search-backward "[^a-z-]\\([a-z-]+\\) *=" nil t)) - (match-string 1)) - -(defun ac-jade-attrv-prefix () - (if (re-search-backward "\\w *= *[\"]\\([^\"]+[ ]\\|\\)\\(.*\\)" nil t) - (match-beginning 2))) - -(ac-html-define-ac-source "jade" - :tag-prefix "^[\t ]*\\(.*\\)" - :attr-prefix "\\(?:,\\|(\\)[ ]*\\(.*\\)" - :attrv-prefix ac-jade-attrv-prefix - :current-tag-func ac-jade-current-tag - :current-attr-func ac-jade-current-attr) - -(provide 'ac-jade) -;;; ac-jade.el ends here diff --git a/elpa/ac-html-20151005.731/ac-jade.elc b/elpa/ac-html-20151005.731/ac-jade.elc deleted file mode 100644 index bc3b87a..0000000 Binary files a/elpa/ac-html-20151005.731/ac-jade.elc and /dev/null differ diff --git a/elpa/ac-html-20151005.731/ac-slim.el b/elpa/ac-html-20151005.731/ac-slim.el deleted file mode 100644 index a1d27c1..0000000 --- a/elpa/ac-html-20151005.731/ac-slim.el +++ /dev/null @@ -1,154 +0,0 @@ -;;; ac-slim.el --- auto complete source for html tag and attributes - -;; Copyright (C) 2015 Zhang Kai Yu - -;; Author: Zhang Kai Yu -;; Keywords: html, auto-complete, slim, ruby - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - -;;; Commentary: - -;; Configuration: -;; - -;;; Code: - -(require 'ac-html-core) - -(require 's) - -(defun ac-slim-inside-ruby-code () - "Return t if inside ruby code." - (let ((line (buffer-substring-no-properties (line-beginning-position) - (line-end-position)))) - (numberp (string-match-p "^[\t ]*[-=]" line)))) - -(defun ac-slim--line-leading-spaces () - "Return leading space of current line." - (let ((saved-point (point)) (number-of-spaces 0) (cur-point nil)) - (goto-char (line-beginning-position)) - (setq cur-point (point)) - (while (-contains-p '(? ?\t) (char-after cur-point)) - (setq number-of-spaces (1+ number-of-spaces)) - (setq cur-point (1+ cur-point)) - (goto-char cur-point)) - (goto-char saved-point) - number-of-spaces)) - -(defun ac-slim--line-is-block-indicator () - "Return t if line indicate a non slim block." - (let ((content-of-line (buffer-substring-no-properties - (line-beginning-position) (line-end-position)))) - (numberp (string-match-p - "[ \t]*\\(ruby\\|javascript\\|coffee\\):[ \t]*" - content-of-line)))) - -(defun ac-slim--line-is-empty () - "Return t if line is empty." - (s-matches-p "^[ \t]*$" (buffer-substring-no-properties - (line-beginning-position) - (line-end-position)))) - -(defun ac-slim-inside-non-slim-block () - "Return t if inside ruby block, coffee block." - (catch 'blk - (save-excursion - (let ((min-number-of-leading-spaces (ac-slim--line-leading-spaces))) - (if (ac-slim--line-is-block-indicator) - (throw 'blk t)) - (while (not (or (= min-number-of-leading-spaces 0) - (= 1 (line-number-at-pos)))) - (forward-line -1) - (if (ac-slim--line-is-empty) - nil - (if (< (ac-slim--line-leading-spaces) min-number-of-leading-spaces) - (progn - (setq min-number-of-leading-spaces (ac-slim--line-leading-spaces)) - (if (ac-slim--line-is-block-indicator) - (throw 'blk t)))))))))) - -(defun ac-slim-tag-prefix () - (and (not (ac-slim-inside-ruby-code)) - (not (ac-slim-inside-non-slim-block)) - (save-match-data - (save-excursion - (re-search-backward "\\(^[\t ]*\\|:[\t ]*\\)\\([a-zA-Z]*\\)" nil t) - (match-beginning 2))))) - -(defun ac-slim-attr-prefix () - (and (not (ac-slim-inside-ruby-code)) - (not (ac-slim-inside-non-slim-block)) - (not (ac-slim-attrv-prefix)) - (save-match-data - (save-excursion - (re-search-backward " \\(.*\\)" nil t) - (match-beginning 1))))) - -(defun ac-slim-attrv-prefix () - (and (not (ac-slim-inside-ruby-code)) - (not (ac-slim-inside-non-slim-block)) - (let (mb2 me2) - (save-excursion - (save-match-data - (if (re-search-backward - "\\w *= *[\"']\\([^\"']+[ ]\\|\\)\\([^\"']*\\)" - (line-beginning-position) t) - (progn - (setq mb2 (match-beginning 2)) - (setq me2 (match-end 2)))))) - (if (and mb2 (>= me2 (point))) - mb2)))) - -(defun ac-slim-class-prefix () - (and (not (ac-slim-inside-ruby-code)) - (not (ac-slim-inside-non-slim-block)) - (save-match-data - (save-excursion - (re-search-backward "\\(^[\t ]*\\|:[\t ]*\\)\\([a-zA-Z0-9#.]*\\.\\)\\([a-zA-Z0-9]\\)" nil t) - (match-beginning 3))))) - -(defun ac-slim-id-prefix () - (and (not (ac-slim-inside-ruby-code)) - (not (ac-slim-inside-non-slim-block)) - (save-match-data - (save-excursion - (re-search-backward "\\(^[\t ]*\\|:[\t ]*\\)\\([a-zA-Z0-9.]*#\\)\\([a-zA-Z0-9]\\)" nil t) - (match-beginning 3))))) - -(defun ac-slim-current-tag () - "Return current slim tag user is typing on." - (let* ((line (buffer-substring-no-properties (line-beginning-position) - (line-end-position))) - (match-result (s-match "\\(^[\t ]*\\|:[\t ]*\\)\\(\\w+\\)" line))) - (if match-result - (nth 2 match-result) - "div"))) - -(defun ac-slim-current-attr () - "Return current html tag's attribute user is typing on." - (save-excursion (re-search-backward "[^a-z-]\\([a-z-]+\\) *=" nil t)) - (match-string 1)) - -(ac-html-define-ac-source "slim" - :tag-prefix ac-slim-tag-prefix - :attr-prefix ac-slim-attr-prefix - :attrv-prefix ac-slim-attrv-prefix - :class-prefix ac-slim-class-prefix - :id-prefix ac-slim-id-prefix - :current-tag-func ac-slim-current-tag - :current-attr-func ac-slim-current-attr) - -(provide 'ac-slim) -;;; ac-slim.el ends here diff --git a/elpa/ac-html-20151005.731/ac-slim.elc b/elpa/ac-html-20151005.731/ac-slim.elc deleted file mode 100644 index 500ad2b..0000000 Binary files a/elpa/ac-html-20151005.731/ac-slim.elc and /dev/null differ diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-doc-url/global b/elpa/ac-html-20151005.731/completion-data/html-attributes-doc-url/global deleted file mode 100644 index 8677b40..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-doc-url/global +++ /dev/null @@ -1 +0,0 @@ -https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/a b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/a deleted file mode 100644 index d992335..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/a +++ /dev/null @@ -1,15 +0,0 @@ -download -href -media -ping -rel -target -datafld -datasrc -hreflang -methods -name -rev -shape -type -urn \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/abbr b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/abbr deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/acronym b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/acronym deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/address b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/address deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/applet b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/applet deleted file mode 100644 index 9f74833..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/applet +++ /dev/null @@ -1,15 +0,0 @@ -align -alt -archive -code -codebase -datafld -datasrc -height -hspace -mayscript -name -object -src -vspace -width \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/area b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/area deleted file mode 100644 index 724822e..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/area +++ /dev/null @@ -1,10 +0,0 @@ -alt -coords -download -href -hreflang -media -rel -shape -target -type \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/article b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/article deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/aside b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/aside deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/audio b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/audio deleted file mode 100644 index d8d4e24..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/audio +++ /dev/null @@ -1,11 +0,0 @@ -autoplay -autobuffer -buffered -controls -loop -mosCurrentSampleOffset -muted -played -preload -src -volume \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/b b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/b deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/base b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/base deleted file mode 100644 index d6a3ceb..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/base +++ /dev/null @@ -1,2 +0,0 @@ -href -target \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/basefont b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/basefont deleted file mode 100644 index b036ef5..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/basefont +++ /dev/null @@ -1,3 +0,0 @@ -color -face -size \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/bdo b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/bdo deleted file mode 100644 index 8724519..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/bdo +++ /dev/null @@ -1 +0,0 @@ -dir \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/bgsound b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/bgsound deleted file mode 100644 index 97cc7b8..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/bgsound +++ /dev/null @@ -1,4 +0,0 @@ -balance -loop -src -volume \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/blockquote b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/blockquote deleted file mode 100644 index ec594fe..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/blockquote +++ /dev/null @@ -1 +0,0 @@ -cite \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/body b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/body deleted file mode 100644 index c021190..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/body +++ /dev/null @@ -1,18 +0,0 @@ -onafterprint -onbeforeprint -onbeforeunload -onblur -onerror -onfocus -onhashchange -onlanguagechange -onload -onmessage -onoffline -ononline -onpopstate -onredo -onresize -onstorage -onundo -onunload diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/br b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/br deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/button b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/button deleted file mode 100644 index 6c320f6..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/button +++ /dev/null @@ -1,12 +0,0 @@ -autofocus -autocomplete -disabled -form -formaction -formenctype -formmethod -formnovalidate -formtarget -name -type -value \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/canvas b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/canvas deleted file mode 100644 index 5601eac..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/canvas +++ /dev/null @@ -1,3 +0,0 @@ -height -moz-opaque -width \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/caption b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/caption deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/col b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/col deleted file mode 100644 index 18371e2..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/col +++ /dev/null @@ -1,2 +0,0 @@ -bgcolor -span \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/colgroup b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/colgroup deleted file mode 100644 index 18371e2..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/colgroup +++ /dev/null @@ -1,2 +0,0 @@ -bgcolor -span \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/data b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/data deleted file mode 100644 index 2890eea..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/data +++ /dev/null @@ -1 +0,0 @@ -value \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dd b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dd deleted file mode 100644 index 76277f2..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dd +++ /dev/null @@ -1 +0,0 @@ -nowrap \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/del b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/del deleted file mode 100644 index cd4dae1..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/del +++ /dev/null @@ -1,2 +0,0 @@ -cite -datetime \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/details b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/details deleted file mode 100644 index ce4a72b..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/details +++ /dev/null @@ -1 +0,0 @@ -open \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dialog b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dialog deleted file mode 100644 index ce4a72b..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dialog +++ /dev/null @@ -1 +0,0 @@ -open \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dl b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dl deleted file mode 100644 index b68dd04..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/dl +++ /dev/null @@ -1 +0,0 @@ -compact \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/element b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/element deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/embed b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/embed deleted file mode 100644 index 6d6aed9..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/embed +++ /dev/null @@ -1,4 +0,0 @@ -height -src -type -width \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/fieldset b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/fieldset deleted file mode 100644 index 36cfeb9..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/fieldset +++ /dev/null @@ -1,3 +0,0 @@ -disabled -form -name \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/form b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/form deleted file mode 100644 index 36444c6..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/form +++ /dev/null @@ -1,9 +0,0 @@ -accept-charset -action -autocapitalize -autocomplete -enctype -method -name -novalidate -target \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/frame b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/frame deleted file mode 100644 index 84732f0..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/frame +++ /dev/null @@ -1,7 +0,0 @@ -src -name -noresize -scrolling -marginheight -marginwidth -frameborder \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/frameset b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/frameset deleted file mode 100644 index 802b24e..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/frameset +++ /dev/null @@ -1,2 +0,0 @@ -cols -rows \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/global b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/global deleted file mode 100644 index a10cda0..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/global +++ /dev/null @@ -1,20 +0,0 @@ -accesskey -class -contenteditable -contextmenu -data- -dir -draggable -dropzone -hidden -id -itemid -itemprop -itemref -itemscope -itemtype -lang -spellcheck -style -tabindex -title \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/hr b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/hr deleted file mode 100644 index 9430a5a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/hr +++ /dev/null @@ -1 +0,0 @@ -color \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/html b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/html deleted file mode 100644 index ec3cf88..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/html +++ /dev/null @@ -1 +0,0 @@ -manifest \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/iframe b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/iframe deleted file mode 100644 index 1fe048b..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/iframe +++ /dev/null @@ -1,8 +0,0 @@ -allowfullscreen -height -name -sandbox -seamless -src -srcdoc -width \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/img b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/img deleted file mode 100644 index 207b07f..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/img +++ /dev/null @@ -1,9 +0,0 @@ -alt -crossorigin -height -ismap -src -sizes -srcset -width -usemap \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/input b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/input deleted file mode 100644 index 2f9b493..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/input +++ /dev/null @@ -1,38 +0,0 @@ -type -accept -autocapitalize -mozactionhint -autocomplete -autocorrect -autofocus -autosave -checked -disabled -form -formaction -formenctype -formmethod -formnovalidate -formtarget -height -incremental -inputmode -list -max -maxlength -min -minlength -multiple -name -pattern -placeholder -readonly -required -selectionDirection -size -spellcheck -src -step -value -width -x-moz-errormessage \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/ins b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/ins deleted file mode 100644 index cd4dae1..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/ins +++ /dev/null @@ -1,2 +0,0 @@ -cite -datetime \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/isindex b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/isindex deleted file mode 100644 index 5cd6b6f..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/isindex +++ /dev/null @@ -1,2 +0,0 @@ -prompt -action \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/keygen b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/keygen deleted file mode 100644 index ab6f40c..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/keygen +++ /dev/null @@ -1,6 +0,0 @@ -autofocus -challenge -disabled -form -keytype -name \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/label b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/label deleted file mode 100644 index 69c1b54..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/label +++ /dev/null @@ -1,3 +0,0 @@ -accesskey -for -form \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/li b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/li deleted file mode 100644 index 2890eea..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/li +++ /dev/null @@ -1 +0,0 @@ -value \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/link b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/link deleted file mode 100644 index b8e808e..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/link +++ /dev/null @@ -1,11 +0,0 @@ -crossorigin -use-credentials -disabled -href -hreflang -media -methods -rel -sizes -target -type \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/map b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/map deleted file mode 100644 index 934edc8..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/map +++ /dev/null @@ -1 +0,0 @@ -name \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/marquee b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/marquee deleted file mode 100644 index 619bd27..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/marquee +++ /dev/null @@ -1,16 +0,0 @@ -behavior -bgcolor -direction -height -hspace -loop -scrollamount -scrolldelay -truespeed -vspace -width -onbounce -onfinish -onstart -start -stop \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/menu b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/menu deleted file mode 100644 index b594625..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/menu +++ /dev/null @@ -1,2 +0,0 @@ -label -type \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/menuitem b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/menuitem deleted file mode 100644 index a959c36..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/menuitem +++ /dev/null @@ -1,8 +0,0 @@ -checked -command -default -disabled -icon -label -radiogroup -type \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/meta b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/meta deleted file mode 100644 index 4ce8964..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/meta +++ /dev/null @@ -1,5 +0,0 @@ -name -charset -itemprop -http-equiv -content \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/meter b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/meter deleted file mode 100644 index 0f2efd9..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/meter +++ /dev/null @@ -1,7 +0,0 @@ -value -min -max -low -high -optimum -form \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/object b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/object deleted file mode 100644 index 8bf3ecb..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/object +++ /dev/null @@ -1,8 +0,0 @@ -data -form -height -name -type -typemustmatch -usemap -width \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/ol b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/ol deleted file mode 100644 index dd8feb5..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/ol +++ /dev/null @@ -1,4 +0,0 @@ -compact -reversed -start -type \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/optgroup b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/optgroup deleted file mode 100644 index 1dd87b6..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/optgroup +++ /dev/null @@ -1,2 +0,0 @@ -disabled -label \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/option b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/option deleted file mode 100644 index 82f55f7..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/option +++ /dev/null @@ -1,4 +0,0 @@ -disabled -label -selected -value \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/output b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/output deleted file mode 100644 index f7d4a39..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/output +++ /dev/null @@ -1,3 +0,0 @@ -for -form -name \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/param b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/param deleted file mode 100644 index 934edc8..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/param +++ /dev/null @@ -1 +0,0 @@ -name \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/progress b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/progress deleted file mode 100644 index e1574ed..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/progress +++ /dev/null @@ -1,2 +0,0 @@ -max -value \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/q b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/q deleted file mode 100644 index ec594fe..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/q +++ /dev/null @@ -1 +0,0 @@ -cite \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/script b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/script deleted file mode 100644 index f67ec4c..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/script +++ /dev/null @@ -1,5 +0,0 @@ -async -src -type -defer -crossorigin \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/select b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/select deleted file mode 100644 index 858e621..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/select +++ /dev/null @@ -1,7 +0,0 @@ -autofocus -disabled -form -multiple -name -required -size \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/source b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/source deleted file mode 100644 index be6f7c8..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/source +++ /dev/null @@ -1,5 +0,0 @@ -sizes -src -srcset -type -media \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/spacer b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/spacer deleted file mode 100644 index af6a9d4..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/spacer +++ /dev/null @@ -1,5 +0,0 @@ -type -size -width -height -align \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/style b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/style deleted file mode 100644 index dfb969d..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/style +++ /dev/null @@ -1,5 +0,0 @@ -type -media -scoped -title -disabled \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/table b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/table deleted file mode 100644 index e69de29..0000000 diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/td b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/td deleted file mode 100644 index c85b318..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/td +++ /dev/null @@ -1,3 +0,0 @@ -colspan -headers -rowspan \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/textarea b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/textarea deleted file mode 100644 index e262b12..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/textarea +++ /dev/null @@ -1,18 +0,0 @@ -autocapitalize -autocomplete -autofocus -cols -disabled -form -maxlength -minlength -name -placeholder -readonly -required -rows -selectionDirection -selectionEnd -selectionStart -spellcheck -wrap \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/th b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/th deleted file mode 100644 index 7876ad2..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/th +++ /dev/null @@ -1,4 +0,0 @@ -colspan -headers -rowspan -scope \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/time b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/time deleted file mode 100644 index 53e773a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/time +++ /dev/null @@ -1 +0,0 @@ -datetime \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/track b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/track deleted file mode 100644 index c628b8e..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/track +++ /dev/null @@ -1,5 +0,0 @@ -default -kind -label -src -srclang \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/video b/elpa/ac-html-20151005.731/completion-data/html-attributes-list/video deleted file mode 100644 index 8eeac7e..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-list/video +++ /dev/null @@ -1,12 +0,0 @@ -autoplay -buffered -controls -crossorigin -height -loop -muted -played -preload -poster -src -width \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-charset b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-charset deleted file mode 100644 index c4da746..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-charset +++ /dev/null @@ -1,7 +0,0 @@ -charset [Obsolete since HTML5] - -This attribute defines the character encoding of the linked resource. The value is a space- and/or comma-delimited list of character sets as defined in RFC 2045. The default value is ISO-8859-1. - -Usage note: - -This attribute is obsolete in HTML5 and should not be used by authors. To achieve its effect, use the HTTP Content-Type header on the linked resource. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-coords b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-coords deleted file mode 100644 index abb49e4..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-coords +++ /dev/null @@ -1,3 +0,0 @@ -coords [HTML4 only] [Obsolete since HTML5] - -For use with object shapes, this attribute uses a comma-separated list of numbers to define the coordinates of the object on the page. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-download b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-download deleted file mode 100644 index e832e13..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-download +++ /dev/null @@ -1,10 +0,0 @@ -download [HTML5] - -This attribute, if present, indicates that the author intends the hyperlink to be used for downloading a resource so that when the user clicks on the link they will be prompted to save it as a local file. If the attribute has a value, the value will be used as the pre-filled file name in the Save prompt that opens when the user clicks on the link (the user can change the name before actually saving the file of course). There are no restrictions on allowed values (though / and \ will be converted to underscores, preventing specific path hints), but you should consider that most file systems have limitations with regard to what punctuation is supported in file names, and browsers are likely to adjust file names accordingly. - -Note: - -Can be used with blob: URLs and data: URLs, to make it easy for users to download content that is generated programmatically using JavaScript (e.g. a picture created using an online drawing Web app). -If the HTTP header Content-Disposition: is present and gives a different filename than this attribute, the HTTP header has priority over this attribute. -If this attribute is present and Content-Disposition: is set to inline, Firefox gives priority to Content-Disposition, like for the filename case, while Chrome gives priority to the download attribute. -In Firefox 20 this attribute is only honored for links to resources with the same-origin. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-href b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-href deleted file mode 100644 index 09bdb8e..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-href +++ /dev/null @@ -1,5 +0,0 @@ -This was the single required attribute for anchors defining a hypertext source link, but is no longer required in HTML5. Omitting this attribute creates a placeholder link. The href attribute indicates the link target, either a URL or a URL fragment. A URL fragment is a name preceded by a hash mark (#), which specifies an internal target location (an ID) within the current document. URLs are not restricted to Web (HTTP)-based documents. URLs might use any protocol supported by the browser. For example, file, ftp, and mailto work in most user agents. - -Note: - -You can use the special fragment "top" to create a link back to the top of the page; for example Return to top. This behavior is specified by HTML5. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-hreflang b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-hreflang deleted file mode 100644 index 3fc152a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-hreflang +++ /dev/null @@ -1,3 +0,0 @@ -hreflang - -This attribute indicates the language of the linked resource. It is purely advisory. Allowed values are determined by BCP47 for HTML5 and by RFC1766 for HTML4. Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-media b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-media deleted file mode 100644 index 6e2f85b..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-media +++ /dev/null @@ -1,8 +0,0 @@ -media [html5] - -This attribute specifies the media which the linked resource applies to. Its value must be a media query. This attribute is mainly useful when linking to external stylesheets by allowing the user agent to pick the best adapted one for the device it runs on. - -Usage note: - -In HTML 4, only simple white-space-separated list of media description literals, i.e. media types and groups, where defined and allowed as values for this attribute, like print, screen, aural, braille, ... HTML 5 extended this to any kind of media queries, which are a superset of the allowed values of HTML 4. -Browsers not supporting the CSS3 Media Queries won't necessarily recognize the adequate link; do not forget to set fallback links, the restricted set of media queries defined in HTML 4. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-methods b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-methods deleted file mode 100644 index 91ee786..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-methods +++ /dev/null @@ -1,3 +0,0 @@ -methods [!] - -The value of this attribute provides information about the functions that might be performed on an object. The values generally are given by the HTTP protocol when it is used, but it might (for similar reasons as for the title attribute) be useful to include advisory information in advance in the link. For example, the browser might choose a different rendering of a link as a function of the methods specified; something that is searchable might get a different icon, or an outside link might render with an indication of leaving the current site. This attribute is not well understood nor supported, even by the defining browser, Internet Explorer 4. Methods Property (MSDN) \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-name b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-name deleted file mode 100644 index 1953320..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-name +++ /dev/null @@ -1,7 +0,0 @@ -name [HTML4 only] [Obsolete since HTML5] - -This attribute is required in an anchor defining a target location within a page. A value for name is similar to a value for the id core attribute and should be an alphanumeric identifier unique to the document. Under the HTML 4.01 specification, id and name both can be used with the element as long as they have identical values. - -Usage note: - -This attribute is obsolete in HTML5, use global attribute id instead. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-ping b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-ping deleted file mode 100644 index afa7e86..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-ping +++ /dev/null @@ -1,3 +0,0 @@ -ping [html5] - -The 'ping' attribute, if present, sends the URLs of the resources a notification/ping if the user follows the hyperlink. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-rel b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-rel deleted file mode 100644 index 290401b..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-rel +++ /dev/null @@ -1,3 +0,0 @@ -rel - -For anchors containing the href attribute, this attribute specifies the relationship of the target object to the link object. The value is a comma-separated list of link types values. The values and their semantics will be registered by some authority that might have meaning to the document author. The default relationship, if no other is given, is void. Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-rev b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-rev deleted file mode 100644 index 0372b43..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-rev +++ /dev/null @@ -1,3 +0,0 @@ -rev [HTML4 only] [Obsolete since HTML5] - -This attribute specifies a reverse link, the inverse relationship of the rel attribute. It is useful for indicating where an object came from, such as the author of a document. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-shape b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-shape deleted file mode 100644 index c1970d2..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-shape +++ /dev/null @@ -1,6 +0,0 @@ -shape [HTML4 only] [Obsolete since HTML5] - -This attribute is used to define a selectable region for hypertext source links associated with a figure to create an image map. The values for the attribute are circle, default, polygon, and rect. The format of the coords attribute depends on the value of shape. For circle, the value is x,y,r where x and y are the pixel coordinates for the center of the circle and r is the radius value in pixels. For rect, the coords attribute should be x,y,w,h. The x,y values define the upper-left-hand corner of the rectangle, while w and h define the width and height respectively. A value of polygon for shape requires x1,y1,x2,y2,... values for coords. Each of the x,y pairs defines a point in the polygon, with successive points being joined by straight lines and the last point joined to the first. The value default for shape requires that the entire enclosed area, typically an image, be used. - -Note: -It is advisable to use the usemap attribute for the element and the associated element to define hotspots instead of the shape attribute. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-target b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-target deleted file mode 100644 index 8ca553a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-target +++ /dev/null @@ -1,9 +0,0 @@ -target - -This attribute specifies where to display the linked resource. In HTML4, this is the name of, or a keyword for, a frame. In HTML5, it is a name of, or keyword for, a browsing context (for example, tab, window, or inline frame). The following keywords have special meanings: - _self: Load the response into the same HTML4 frame (or HTML5 browsing context) as the current one. This value is the default if the attribute is not specified. - _blank: Load the response into a new unnamed HTML4 window or HTML5 browsing context. - _parent: Load the response into the HTML4 frameset parent of the current frame or HTML5 parent browsing context of the current one. If there is no parent, this option behaves the same way as _self. - _top: In HTML4: Load the response into the full, original window, canceling all other frames. In HTML5: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self. - -Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-type b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-type deleted file mode 100644 index cbf73b2..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-type +++ /dev/null @@ -1,3 +0,0 @@ -type - -This attribute specifies the media type in the form of a MIME type for the link target. Generally, this is provided strictly as advisory information; however, in the future a browser might add a small icon for multimedia types. For example, a browser might add a small speaker icon when type is set to audio/wav. For a complete list of recognized MIME types, see http://www.w3.org/TR/html4/references.html#ref-MIMETYPES. Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-urn b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-urn deleted file mode 100644 index 65f07eb..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/a-urn +++ /dev/null @@ -1,3 +0,0 @@ -urn [!] - -This supposedly Microsoft-supported attribute relates a uniform resource name (URN) with the link. While it is based on standards work years back, the meaning of URNs is still not well defined, so this attribute is meaningless. urn Property (MSDN) \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/abbr-title b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/abbr-title deleted file mode 100644 index 58b4380..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/abbr-title +++ /dev/null @@ -1,28 +0,0 @@ -title - -Use the title attribute to define the full description of the abbreviation. Many user agents present this as a tooltip. - -[global attribute] - -Text to be displayed in a tooltip when hovering over the element. - -This attribute contains a text representing advisory information related to the element it belongs to. Such information can typically, but not necessarily, be presented to the user as a tooltip. Here are some typical uses of this attribute: - -Link: the title or a description of the linked document -Media element like an image: a description or associated credits -Paragraph: a footnote or a commentary about it -Quotation: some information about the author, and so on. - -If this attribute is omitted, it means that the title of the nearest ancestor of this element is still relevant for it (and can legitimately be used as the tooltip for that element. If this attribute is set to the empty string, it explicitly means that its nearest ancestor's title is not relevant for this element (and shouldn't be used in the tooltip for that element). - -Additional semantics are attached to the title attributes of the , , and elements. - -Usage note: -The title attribute may contains several lines. Each U+000A LINE FEED (LF) inserted represents such a newline. Some caution must be taken though, as that means that: - -

Newlines in title should be taken into account,like this example.

- -defines a two-line title. - -Support for multi-line titles was added to Gecko in Gecko 12.0 (Firefox 12.0 / Thunderbird 12.0 / SeaMonkey 2.9). \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-alt b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-alt deleted file mode 100644 index 7217d16..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-alt +++ /dev/null @@ -1,3 +0,0 @@ -alt - -A text string alternative to display on browsers that do not display images. The text should be phrased so that it presents the user with the same kind of choice as the image would offer when displayed without the alternative text. In HTML4, this attribute is required, but may be the empty string (""). In HTML5, this attribute is required only if the href attribute is used. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-coords b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-coords deleted file mode 100644 index 366eaa3..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-coords +++ /dev/null @@ -1,3 +0,0 @@ -coords - -A set of values specifying the coordinates of the hot-spot region. The number and meaning of the values depend upon the value specified for the shape attribute. For a rect or rectangle shape, the coords value is two x,y pairs: left, top, right, and bottom. For a circle shape, the value is x,y,r where x,y is a pair specifying the center of the circle and r is a value for the radius. For a poly or polygon< shape, the value is a set of x,y pairs for each point in the polygon: x1,y1,x2,y2,x3,y3, and so on. In HTML4, the values are numbers of pixels or percentages, if a percent sign (%) is appended; in HTML5, the values are numbers of CSS pixels. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-download b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-download deleted file mode 100644 index b358dc6..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-download +++ /dev/null @@ -1,3 +0,0 @@ -download [HTML5] - -This attribute, if present, indicates that the author intends the hyperlink to be used for downloading a resource. See
for a full description of the download attribute. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-href b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-href deleted file mode 100644 index bcd259a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-href +++ /dev/null @@ -1,3 +0,0 @@ -href - -The hyperlink target for the area. Its value is a valid URL. In HTML4, either this attribute or the nohref attribute must be present in the element. In HTML5, this attribute may be omitted; if so, the area element does not represent a hyperlink. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-hreflang b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-hreflang deleted file mode 100644 index 4886a83..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-hreflang +++ /dev/null @@ -1,3 +0,0 @@ -hreflang [HTML5] - -Indicates the language of the linked resource. Allowed values are determined by BCP47. Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-media b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-media deleted file mode 100644 index 3b5267f..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-media +++ /dev/null @@ -1,3 +0,0 @@ -media [HTML5] - -A hint of the media for which the linked resource was designed, for example print and screen. If omitted, it defaults to all. Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-name b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-name deleted file mode 100644 index 1eb3ed0..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-name +++ /dev/null @@ -1,3 +0,0 @@ -name [HTML4 only] [Obsolete since Gecko 5.0] - -Define a names for the clickable area so that it can be scripted by older browsers. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-nohref b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-nohref deleted file mode 100644 index 6c7fb85..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-nohref +++ /dev/null @@ -1,6 +0,0 @@ -nohref [HTML4 only] [Obsolete since Gecko 5.0] - -Indicates that no hyperlink exists for the associated area. Either this attribute or the href attribute must be present in the element. - -Usage note: -This attribute is obsolete in HTML5, instead omitting the href attribute is sufficient. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-ref b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-ref deleted file mode 100644 index b4f8778..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-ref +++ /dev/null @@ -1,3 +0,0 @@ -rel [HTML5] - -For anchors containing the href attribute, this attribute specifies the relationship of the target object to the link object. The value is a comma-separated list of link types values. The values and their semantics will be registered by some authority that might have meaning to the document author. The default relationship, if no other is given, is void. Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-shape b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-shape deleted file mode 100644 index 0f81a15..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-shape +++ /dev/null @@ -1,3 +0,0 @@ -shape - -The shape of the associated hot spot. The specifications for HTML 5 and HTML 4 define the values rect, which defines a rectangular region; circle, which defines a circular region; poly, which defines a polygon; and default, which indicates the entire region beyond any defined shapes. Many browsers, notably Internet Explorer 4 and higher, support circ, polygon, and rectangle as valid values for shape; these values are [!]. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-tabindex b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-tabindex deleted file mode 100644 index cc33a2a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-tabindex +++ /dev/null @@ -1,3 +0,0 @@ -tabindex [HTML4 only] [Obsolete since Gecko 5.0] - -A numeric value specifying the position of the defined area in the browser tabbing order. This attribute is global in HTML5. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-target b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-target deleted file mode 100644 index 3b5d940..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-target +++ /dev/null @@ -1,9 +0,0 @@ -target - -This attribute specifies where to display the linked resource. In HTML4, this is the name of, or a keyword for, a frame. In HTML5, it is a name of, or keyword for, a browsing context (for example, tab, window, or inline frame). The following keywords have special meanings: - _self: Load the response into the same HTML4 frame (or HTML5 browsing context) as the current one. This value is the default if the attribute is not specified. - _blank: Load the response into a new unnamed HTML4 window or HTML5 browsing context. - _parent: Load the response into the HMTL4 frameset parent of the current frame or HTML5 parent browsing context of the current one. If there is no parent, this option behaves the same way as _self. - _top: In HTML4: Load the response into the full, original window, canceling all other frames. In HTML5: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self. - -Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-type b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-type deleted file mode 100644 index cbf73b2..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/area-type +++ /dev/null @@ -1,3 +0,0 @@ -type - -This attribute specifies the media type in the form of a MIME type for the link target. Generally, this is provided strictly as advisory information; however, in the future a browser might add a small icon for multimedia types. For example, a browser might add a small speaker icon when type is set to audio/wav. For a complete list of recognized MIME types, see http://www.w3.org/TR/html4/references.html#ref-MIMETYPES. Use this attribute only if the href attribute is present. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-autobuffer b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-autobuffer deleted file mode 100644 index 0589c6e..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-autobuffer +++ /dev/null @@ -1,3 +0,0 @@ -autobuffer [Obsolete since Gecko 2.0] - -A Boolean attribute; if specified, the audio will automatically begin being downloaded, even if not set to automatically play. This continues until the media cache is full, or the entire audio file has been downloaded, whichever comes first. This should only be used when it is expected that the user will choose to play the audio; for example, if the user has navigated to a page using a "Play this audio" link. This attribute was removed in Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1) in favor of the preload attribute. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-autoplay b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-autoplay deleted file mode 100644 index b9ce010..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-autoplay +++ /dev/null @@ -1,3 +0,0 @@ -autoplay - -A Boolean attribute; if specified (even if the value is "false"!), the audio will automatically begin to play back as soon as it can do so without stopping to finish loading the data. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-buffered b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-buffered deleted file mode 100644 index 8c02140..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-buffered +++ /dev/null @@ -1 +0,0 @@ -An attribute you can read to determine which time ranges of the media have been buffered. This attribute contains a TimeRanges object. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-controls b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-controls deleted file mode 100644 index f434a23..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-controls +++ /dev/null @@ -1,3 +0,0 @@ -controls - -If this attribute is present, the browser will offer controls to allow the user to control audio playback, including volume, seeking, and pause/resume playback. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-loop b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-loop deleted file mode 100644 index 0c31f7a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-loop +++ /dev/null @@ -1,3 +0,0 @@ -loop - -A Boolean attribute; if specified, we will, upon reaching the end of the audio, automatically seek back to the start. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-mozCurrentSampleOffset b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-mozCurrentSampleOffset deleted file mode 100644 index 28b507b..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-mozCurrentSampleOffset +++ /dev/null @@ -1,3 +0,0 @@ -mozCurrentSampleOffset - -The offset, specified as the number of samples since the beginning of the audio stream, at which the audio is currently playing. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-muted b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-muted deleted file mode 100644 index 26446d1..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-muted +++ /dev/null @@ -1 +0,0 @@ -A Boolean attribute which indicates whether the audio will be initially silenced. Its default value is false, meaning that the audio will be played. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-played b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-played deleted file mode 100644 index 18579a9..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-played +++ /dev/null @@ -1 +0,0 @@ -A TimeRanges object indicating all the ranges of the audio that have been played. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-preload b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-preload deleted file mode 100644 index 5187790..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-preload +++ /dev/null @@ -1,14 +0,0 @@ -preload - -This enumerated attribute is intended to provide a hint to the browser about what the author thinks will lead to the best user experience. It may have one of the following values: - none: hints that either the author thinks that the user won't need to consult that audio or that the server wants to minimize its traffic; in others terms this hint indicates that the audio should not be cached; - metadata: hints that though the author thinks that the user won't need to consult that audio, fetching the metadata (e.g. length) is reasonable; - auto: hints that the user needs have priority; in others terms this hint indicated that, if needed, the whole audio could be downloaded, even if the user is not expected to use it; - the empty string: which is a synonym of the auto value. - -If not set, its default value is browser-defined (i.e. each browser can choose its own default value), though the spec advises it to be set to metadata. - -Usage notes: - -The autoplay attribute has precedence over this one as if one wants to automatically play a audio, the browser will obviously need to download it. Setting both the autoplay and the preload attributes is allowed by the specification. -The browser is not forced by the specification to follow the value of this attribute; it is a mere hint. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-src b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-src deleted file mode 100644 index 26afb18..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-src +++ /dev/null @@ -1,3 +0,0 @@ -src - -The URL of the audio to embed. This is subject to HTTP access controls. This is optional; you may instead use the element within the audio block to specify the audio to embed. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-volume b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-volume deleted file mode 100644 index 1d6f33d..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/audio-volume +++ /dev/null @@ -1,3 +0,0 @@ -volume - -The playback volume of any audio portions, in the range 0.0 (silent) to 1.0 (loudest). \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/base-href b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/base-href deleted file mode 100644 index 2a272e9..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/base-href +++ /dev/null @@ -1,4 +0,0 @@ -href - -The base URL to be used throughout the document for relative URL addresses. If this attribute is specified, this element must come before any other elements with attributes whose values are URLs. -Absolute and relative URIs are allowed (but see note section below). \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/base-target b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/base-target deleted file mode 100644 index 2cda7b9..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/base-target +++ /dev/null @@ -1,7 +0,0 @@ -target - -A name or keyword indicating the default location to display the result when hyperlinks or forms cause navigation, for elements that do not have an explicit target reference. In HTML4, this is the name of, or a keyword for, a frame. In HTML5, it is a name of, or keyword for, a browsing context (for example, tab, window, or inline frame). The following keywords have special meanings: - _self: Load the result into the same HTML4 frame (or HTML5 browsing context) as the current one. This value is the default if the attribute is not specified. - _blank: Load the result into a new unnamed HTML4 window or HTML5 browsing context. - _parent: Load the result into the HTML4 frameset parent of the current frame or HTML5 parent browsing context of the current one. If there is no parent, this option behaves the same way as _self. - _top: In HTML4: Load the result into the full, original window, canceling all other frames. In HTML5: Load the result into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/bdi-dir b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/bdi-dir deleted file mode 100644 index 1467dc0..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/bdi-dir +++ /dev/null @@ -1,20 +0,0 @@ -dir - -Like all other HTML elements, this element has the global attributes, with a slight semantic difference: the dir attribute is not inherited. If not set, its default value is the auto which let the browser decide the direction based on the element's content. - -[global attribute] - -Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left) - -This enumerated attribute indicates the directionality of the element's text. It can have the following values: - -ltr, which means left to right and is to be used for languages that are written from the left to the right (like English); -rtl, which means right to left and is to be used for languages that are written from the right to the left (like Arabic); -auto, which let the user agent decides. It uses a basic algorithm as it parses the characters inside the element until it finds a character with a strong directionality, then apply that directionality to the whole element. - -Usage notes: -This attribute is mandatory for the element where it has a different semantic meaning. -This attribute is not inherited by the element. If not set, its value is auto. -This attribute can be overridden by the CSS properties direction and unicode-bidi, if a CSS page is active and the element supports these properties. -As the directionality of the text is semantically related to its content and not to its presentation, it is recommended that web developers use this attribute instead of the related CSS properties when possible. That way, the text will display correctly even on a browser that doesn't support CSS or has the CSS deactivated. -The auto value should be used for data with an unknown directionality, like data coming from user input, eventually stored in a database. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/bdo-dir b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/bdo-dir deleted file mode 100644 index 759901a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/bdo-dir +++ /dev/null @@ -1,6 +0,0 @@ -dir - -Text direction in this element. Possible values are: - ltr: Indicates that the text should go in a left-to-right direction. - rtl: Indicates that the text should go in a right-to-left direction. - auto: The browser decides which direction based on the element's content. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/blockquote-cite b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/blockquote-cite deleted file mode 100644 index 568cccf..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/blockquote-cite +++ /dev/null @@ -1,3 +0,0 @@ -cite - -A URL that designates a source document or message for the information quoted. This attribute is intended to point to information explaining the context or the reference for the quote. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onafterprint b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onafterprint deleted file mode 100644 index 350866a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onafterprint +++ /dev/null @@ -1,3 +0,0 @@ -onafterprint [HTML5] - -Function to call after the user has printed the document. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onbeforeprint b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onbeforeprint deleted file mode 100644 index 7c315b2..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onbeforeprint +++ /dev/null @@ -1,3 +0,0 @@ -onbeforeprint [HTML5] - -Function to call when the user requests printing of the document. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onbeforeunload b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onbeforeunload deleted file mode 100644 index e31bd18..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onbeforeunload +++ /dev/null @@ -1,3 +0,0 @@ -onbeforeunload [HTML5] - -Function to call when the document is about to be unloaded. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onblur b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onblur deleted file mode 100644 index 5406f5d..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onblur +++ /dev/null @@ -1,3 +0,0 @@ -onblur [HTML5] - -Function to call when the document loses focus. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onerror b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onerror deleted file mode 100644 index 88712e6..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onerror +++ /dev/null @@ -1,3 +0,0 @@ -onerror [HTML5] - -Function to call when the document fails to load properly. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onfocus b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onfocus deleted file mode 100644 index b273af8..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onfocus +++ /dev/null @@ -1,3 +0,0 @@ -onfocus [HTML5] - -Function to call when the document receives focus. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onhashchange b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onhashchange deleted file mode 100644 index 0e297e7..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onhashchange +++ /dev/null @@ -1,3 +0,0 @@ -onhashchange [HTML5] - -Function to call when the fragment identifier part (starting with the hash ('#') character) of the document's current address has changed. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onlanguagechange b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onlanguagechange deleted file mode 100644 index 863448f..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onlanguagechange +++ /dev/null @@ -1,3 +0,0 @@ -onlanguagechange [experimental] - -Function to call when the preferred languages changed. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onload b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onload deleted file mode 100644 index 04d8832..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onload +++ /dev/null @@ -1,3 +0,0 @@ -onload [HTML5] - -Function to call when the document has finished loading. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onmessage b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onmessage deleted file mode 100644 index c7c7f30..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onmessage +++ /dev/null @@ -1,3 +0,0 @@ -onmessage [HTML5] - -Function to call when the document has received a message. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onoffline b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onoffline deleted file mode 100644 index 487677f..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onoffline +++ /dev/null @@ -1,3 +0,0 @@ -onoffline [HTML5] - -Function to call when network communication has failed. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-ononline b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-ononline deleted file mode 100644 index 87a97be..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-ononline +++ /dev/null @@ -1,3 +0,0 @@ -ononline [HTML5] - -Function to call when network communication has been restored. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onpopstate b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onpopstate deleted file mode 100644 index 24933dc..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onpopstate +++ /dev/null @@ -1,3 +0,0 @@ -onpopstate [HTML5] - -Function to call when the user has navigated session history. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onredo b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onredo deleted file mode 100644 index 5b6a73a..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onredo +++ /dev/null @@ -1,3 +0,0 @@ -onredo [HTML5] - -Function to call when the user has moved forward in undo transaction history. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onresize b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onresize deleted file mode 100644 index ebc7ef0..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onresize +++ /dev/null @@ -1,3 +0,0 @@ -onresize [HTML5] - -Function to call when the document has been resized. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onstorage b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onstorage deleted file mode 100644 index 844d46c..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onstorage +++ /dev/null @@ -1,3 +0,0 @@ -onstorage [HTML5] - -Function to call when the storage area has changed. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onundo b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onundo deleted file mode 100644 index ef76ebc..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onundo +++ /dev/null @@ -1,3 +0,0 @@ -onundo [HTML5] - -Function to call when the user has moved backward in undo transaction history. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onunload b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onunload deleted file mode 100644 index f463dfd..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/body-onunload +++ /dev/null @@ -1,3 +0,0 @@ -onunload [HTML5] - -Function to call when the document is going away. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/br-clear b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/br-clear deleted file mode 100644 index 626e841..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/br-clear +++ /dev/null @@ -1,6 +0,0 @@ -clear [Deprecated since HTML4.01] [Obsolete since HTML5] - -Indicates where to begin the next line after the break. - -Usage note: -This attribute is obsolete in HTML5 and should not be used by authors. Use the CSS clear property instead. \ No newline at end of file diff --git a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/button-autocomplete b/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/button-autocomplete deleted file mode 100644 index 42e1837..0000000 --- a/elpa/ac-html-20151005.731/completion-data/html-attributes-short-docs/button-autocomplete +++ /dev/null @@ -1,3 +0,0 @@ -autocomplete [!] - -The use of this attribute on a