Lines Matching refs:in

4 This is an attempt to enable direct insertion of HTML tags in DokuWiki that is not reliant on the HTML option, which is no longer available in current versions of DokuWiki.
10 The following HTML elements are added by this plugin (in alphabetic order):
70 Instead of specifying the attributes in the HTML format, this plugin replicates and expands the formats used by the **wrap** plugin, which allows to specify the attributes as in the following example:
80 - `:lang` – a colon (`:`), followed by a valid [BCP47](https://www.rfc-editor.org/info/bcp47) language code. Examples: `:en`, `:fr-CH`, `:grc-Latn`, etc. See also: “[Declaring language in HTML](https://www.w3.org/International/questions/qa-html-language-declarations)”.
84 - `"Title text"` – A string that is enclosed in double quotes will be rendered as `title`.
90 Generally, attributes can appear in any order and are always optional!
94 If you previously used `<html>` tags to embed HTML code into your DokuWiki site, you need to replace them with the format used by this plugin. The best way to get started is to make a run a couple of search-replace operations on the `data/pages/` directory in your DokuWiki installation.
96 :bangbang: **Important:** It is advisable to run the following searches on a *copy* of this directory and also keep a backup of the original state, in case of problems that only show up later. The following search-replace operations can do serious damage to your site content. The autor does not take any responsibility for any damages that follow from applying this procedure: :bangbang:
102 - Search for `<html>`in default mode, replace with an empty string.
103 - Search for `</html>`in default mode, replace with an empty string.
107 - search for ` title="` (note the space in front!) in standard mode, replace with ` "` (space + quotation mark)
111 - Search for ` lang="([^\"]*)"` in *regex mode* (!), replace with ` :$1` (note: spaces in front of each!)
115 - Search for ` class="([^\"]*)"` in *regex mode* (!), replace with ` $1` (note the spaces again!)