编辑:shortcode.js
"use strict"; var wp; (wp ||= {}).shortcode = (() => { var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // packages/shortcode/build-module/index.mjs var index_exports = {}; __export(index_exports, { attrs: () => attrs, default: () => index_default, fromMatch: () => fromMatch, next: () => next, regexp: () => regexp, replace: () => replace, string: () => string }); // node_modules/memize/dist/index.js function memize(fn, options) { var size = 0; var head; var tail; options = options || {}; function memoized() { var node = head, len = arguments.length, args, i; searchCache: while (node) { if (node.args.length !== arguments.length) { node = node.next; continue; } for (i = 0; i < len; i++) { if (node.args[i] !== arguments[i]) { node = node.next; continue searchCache; } } if (node !== head) { if (node === tail) { tail = node.prev; } node.prev.next = node.next; if (node.next) { node.next.prev = node.prev; } node.next = head; node.prev = null; head.prev = node; head = node; } return node.val; } args = new Array(len); for (i = 0; i < len; i++) { args[i] = arguments[i]; } node = { args, // Generate the result from original function val: fn.apply(null, args) }; if (head) { head.prev = node; node.next = head; } else { tail = node; } if (size === /** @type {MemizeOptions} */ options.maxSize) { tail = /** @type {MemizeCacheNode} */ tail.prev; tail.next = null; } else { size++; } head = node; return node.val; } memoized.clear = function() { head = null; tail = null; size = 0; }; return memoized; } // packages/shortcode/build-module/index.mjs function next(tag, text, index = 0) { const re = regexp(tag); re.lastIndex = index; const match = re.exec(text); if (!match) { return; } if ("[" === match[1] && "]" === match[7]) { return next(tag, text, re.lastIndex); } const result = { index: match.index, content: match[0], shortcode: fromMatch(match) }; if (match[1]) { result.content = result.content.slice(1); result.index++; } if (match[7]) { result.content = result.content.slice(0, -1); } return result; } function replace(tag, text, callback) { return text.replace( regexp(tag), // Let us use spread syntax to capture the arguments object. (...args) => { const match = args[0]; const left = args[1]; const right = args[7]; if (left === "[" && right === "]") { return match; } const result = callback(fromMatch(args)); return result || result === "" ? left + result + right : match; } ); } function string(options) { return new Shortcode(options).string(); } function regexp(tag) { return new RegExp( "\\[(\\[?)(" + tag + ")(?![\\w-])([^\\]\\/]*(?:\\/(?!\\])[^\\]\\/]*)*?)(?:(\\/)\\]|\\](?:([^\\[]*(?:\\[(?!\\/\\2\\])[^\\[]*)*)(\\[\\/\\2\\]))?)(\\]?)", "g" ); } var attrs = memize((text) => { const named = {}; const numeric = []; const pattern = /([\w-]+)\s*=\s*"([^"]*)"(?:\s|$)|([\w-]+)\s*=\s*'([^']*)'(?:\s|$)|([\w-]+)\s*=\s*([^\s'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|'([^']*)'(?:\s|$)|(\S+)(?:\s|$)/g; text = text.replace(/[\u00a0\u200b]/g, " "); let match; while (match = pattern.exec(text)) { if (match[1]) { named[match[1].toLowerCase()] = match[2]; } else if (match[3]) { named[match[3].toLowerCase()] = match[4]; } else if (match[5]) { named[match[5].toLowerCase()] = match[6]; } else if (match[7]) { numeric.push(match[7]); } else if (match[8]) { numeric.push(match[8]); } else if (match[9]) { numeric.push(match[9]); } } return { named, numeric }; }); function fromMatch(match) { let type; if (match[4]) { type = "self-closing"; } else if (match[6]) { type = "closed"; } else { type = "single"; } return new Shortcode({ tag: match[2], attrs: match[3], type, content: match[5] }); } var Shortcode = class { // Instance properties tag; type; content; attrs; // Static methods static next = next; static replace = replace; static string = string; static regexp = regexp; static attrs = attrs; static fromMatch = fromMatch; constructor(options) { const { tag, attrs: attributes, type, content } = options; this.tag = tag; this.type = type; this.content = content; this.attrs = { named: {}, numeric: [] }; if (!attributes) { return; } if (typeof attributes === "string") { this.attrs = attrs(attributes); } else if ("named" in attributes && "numeric" in attributes && attributes.named !== void 0 && attributes.numeric !== void 0) { this.attrs = attributes; } else { Object.entries(attributes).forEach(([key, value]) => { if (value !== void 0) { this.set(key, String(value)); } }); } } /** * Get a shortcode attribute. * * Automatically detects whether `attr` is named or numeric and routes it * accordingly. * * @param attr Attribute key. * * @return Attribute value. */ get(attr) { if (typeof attr === "number") { return this.attrs.numeric[attr]; } return this.attrs.named[attr]; } /** * Set a shortcode attribute. * * Automatically detects whether `attr` is named or numeric and routes it * accordingly. * * @param attr Attribute key. * @param value Attribute value. * * @return Shortcode instance. */ set(attr, value) { if (typeof attr === "number") { this.attrs.numeric[attr] = value; } else { this.attrs.named[attr] = value; } return this; } /** * Transform the shortcode into a string. * * @return String representation of the shortcode. */ string() { let text = "[" + this.tag; this.attrs.numeric.forEach((value) => { if (/\s/.test(value)) { text += ' "' + value + '"'; } else { text += " " + value; } }); Object.entries(this.attrs.named).forEach(([name, value]) => { text += " " + name + '="' + value + '"'; }); if ("single" === this.type) { return text + "]"; } else if ("self-closing" === this.type) { return text + " /]"; } text += "]"; if (this.content) { text += this.content; } return text + "[/" + this.tag + "]"; } }; var index_default = Shortcode; return __toCommonJS(index_exports); })(); if (typeof wp.shortcode === 'object' && wp.shortcode.default) { wp.shortcode = wp.shortcode.default; }
保存文件
位置:
home
/
londongranite
/
public_html
/
wp-includes
/
js
/
dist
批量上传
创建
创建
批量权限
批量删除
名称
权限
大小
修改时间
操作
↑ 返回上级
-
-
-
-
development
drwxr-xr-x
-
2024-10-28 16:19
权限
删除
重命名
script-modules
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
vendor
drwxr-xr-x
-
2026-05-21 23:23
权限
删除
重命名
a11y.js
-rw-r--r--
5.45 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
a11y.min.js
-rw-r--r--
2.44 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
annotations.min.js
-rw-r--r--
5.62 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
api-fetch.js
-rw-r--r--
17.46 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
api-fetch.min.js
-rw-r--r--
6.32 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
autop.js
-rw-r--r--
9.73 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
autop.min.js
-rw-r--r--
5.5 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
base-styles.js
-rw-r--r--
48 B
2026-05-21 23:23
编辑
下载
权限
删除
重命名
base-styles.min.js
-rw-r--r--
75 B
2026-07-10 03:34
编辑
下载
权限
删除
重命名
blob.js
-rw-r--r--
2.3 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
block-directory.js
-rw-r--r--
55.67 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
block-editor.js
-rw-r--r--
2.7 MB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
block-editor.min.js
-rw-r--r--
1.01 MB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
block-library.js
-rw-r--r--
2.57 MB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
block-library.min.js
-rw-r--r--
1.09 MB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
block-serialization-default-parser.js
-rw-r--r--
6.54 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
block-serialization-default-parser.min.js
-rw-r--r--
2.39 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
block-serialization-spec-parser.js
-rw-r--r--
50.48 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
block-serialization-spec-parser.min.js
-rw-r--r--
10.38 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
blocks.js
-rw-r--r--
381.06 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
blocks.min.js
-rw-r--r--
180.62 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
commands.js
-rw-r--r--
151.71 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
commands.min.js
-rw-r--r--
63.14 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
components.js
-rw-r--r--
3.83 MB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
compose.js
-rw-r--r--
80.75 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
core-commands.js
-rw-r--r--
28.68 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
core-commands.min.js
-rw-r--r--
11.87 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
core-data.js
-rw-r--r--
612.03 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
core-data.min.js
-rw-r--r--
210.46 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
customize-widgets.js
-rw-r--r--
91.57 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
customize-widgets.min.js
-rw-r--r--
36.62 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
data-controls.js
-rw-r--r--
4.13 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
data-controls.min.js
-rw-r--r--
1.77 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
data.min.js
-rw-r--r--
25.92 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
date.js
-rw-r--r--
176.34 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
date.min.js
-rw-r--r--
141.22 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
deprecated.js
-rw-r--r--
3.04 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
deprecated.min.js
-rw-r--r--
1.28 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
dom-ready.js
-rw-r--r--
1.47 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
dom-ready.min.js
-rw-r--r--
818 B
2026-07-10 03:34
编辑
下载
权限
删除
重命名
dom.min.js
-rw-r--r--
12.65 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
edit-post.min.js
-rw-r--r--
49.11 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
edit-site.js
-rw-r--r--
1.69 MB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
edit-widgets.min.js
-rw-r--r--
61.86 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
editor.min.js
-rw-r--r--
1021.63 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
element.js
-rw-r--r--
27.93 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
element.min.js
-rw-r--r--
12.17 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
escape-html.js
-rw-r--r--
2.29 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
escape-html.min.js
-rw-r--r--
1.07 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
format-library.min.js
-rw-r--r--
28.88 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
hooks.js
-rw-r--r--
11.96 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
hooks.min.js
-rw-r--r--
4.93 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
html-entities.js
-rw-r--r--
1.65 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
i18n.js
-rw-r--r--
15.3 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
i18n.min.js
-rw-r--r--
5.6 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
is-shallow-equal.js
-rw-r--r--
2.69 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
is-shallow-equal.min.js
-rw-r--r--
1.1 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
keyboard-shortcuts.js
-rw-r--r--
9.68 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
keyboard-shortcuts.min.js
-rw-r--r--
3.44 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
keycodes.min.js
-rw-r--r--
2.91 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
list-reusable-blocks.js
-rw-r--r--
13.06 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
list-reusable-blocks.min.js
-rw-r--r--
5.24 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
media-utils.js
-rw-r--r--
637.15 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
media-utils.min.js
-rw-r--r--
237.64 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
notices.js
-rw-r--r--
10.11 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
notices.min.js
-rw-r--r--
4.38 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
nux.js
-rw-r--r--
10.32 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
nux.min.js
-rw-r--r--
3.95 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
patterns.min.js
-rw-r--r--
21.63 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
plugins.min.js
-rw-r--r--
4.76 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
preferences-persistence.js
-rw-r--r--
17.22 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
preferences-persistence.min.js
-rw-r--r--
5.49 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
preferences.js
-rw-r--r--
21.07 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
primitives.js
-rw-r--r--
5.08 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
primitives.min.js
-rw-r--r--
1.98 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
priority-queue.js
-rw-r--r--
10.02 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
private-apis.js
-rw-r--r--
4.09 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
private-apis.min.js
-rw-r--r--
2.66 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
react-i18n.js
-rw-r--r--
3.91 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
react-i18n.min.js
-rw-r--r--
1.53 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
redux-routine.js
-rw-r--r--
24.68 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
redux-routine.min.js
-rw-r--r--
9.65 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
reusable-blocks.js
-rw-r--r--
20.51 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
reusable-blocks.min.js
-rw-r--r--
7.22 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
rich-text.js
-rw-r--r--
97.04 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
rich-text.min.js
-rw-r--r--
39.89 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
router.min.js
-rw-r--r--
14.13 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
server-side-render.js
-rw-r--r--
10.97 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
server-side-render.min.js
-rw-r--r--
3.94 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
shortcode.js
-rw-r--r--
7.96 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
style-engine.js
-rw-r--r--
17.62 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
style-engine.min.js
-rw-r--r--
6.42 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
theme.js
-rw-r--r--
127.65 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
theme.min.js
-rw-r--r--
56.12 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
token-list.js
-rw-r--r--
6.12 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
token-list.min.js
-rw-r--r--
1.62 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
undo-manager.js
-rw-r--r--
5.29 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
undo-manager.min.js
-rw-r--r--
1.7 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
upload-media.js
-rw-r--r--
55.67 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
upload-media.min.js
-rw-r--r--
23.05 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
url.js
-rw-r--r--
23.39 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
url.min.js
-rw-r--r--
10.13 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
viewport.js
-rw-r--r--
6.61 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
viewport.min.js
-rw-r--r--
2.24 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
warning.min.js
-rw-r--r--
755 B
2026-07-10 03:34
编辑
下载
权限
删除
重命名
widgets.js
-rw-r--r--
50.08 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
widgets.min.js
-rw-r--r--
20.83 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名
wordcount.js
-rw-r--r--
6.93 KB
2026-05-21 23:23
编辑
下载
权限
删除
重命名
wordcount.min.js
-rw-r--r--
2.45 KB
2026-07-10 03:34
编辑
下载
权限
删除
重命名