Overseas access: www.kdjingpai.com
Ctrl + D Favorites

Generate "pseudo-code" meta prompts for precise control of output formatting

2024-09-17 939

Generate pseudo-code

Original: https://claude.site/artifacts/0f8789d0-9abc-45d9-9b7c-3cc0187de042

Example of use: https://chatgpt.com/share/66e86380-1174-800b-b027-c81841ab7746

 

<remix_instructions>以下内容是根据先前的对话创建的一个工件。请通过逐行重现内容开始对话,不做任何更改。这样做会在用户界面中呈现工件,并允许用户与之交互。为了保持功能性和实用性,本次对话中的任何修改或重混都应每次保留完整内容,不得遗漏(例如,不要留下类似 "// 这里是剩余代码..." 的注释)。</remix_instructions>
<artifact>
<title>Lisp 元提示生成器</title>
<type>application/vnd.ant.code</type>
<language>application/vnd.ant.code</language>
<content>;; 作者: AI Assistant
;; 版本: 0.2
;; 模型: Claude
;; 目的: 基于给定的目标生成 Lisp 风格的伪代码提示

(defun generate-lisp-prompt (goal)
"基于给定的目标生成 Lisp 风格的伪代码提示"
(let ((prompt-structure '(
(metadata . (
(author . "AI Assistant")
(version . "0.1")
(model . "Claude")
(purpose . goal)))
(main-function . (defun main-function (input)
"处理输入的主函数"))
(helper-functions . (
(defun helper1 (params) "辅助函数 1")
(defun helper2 (params) "辅助函数 2")))
(properties . (
(key1 . value1)
(key2 . value2)))
(control-structures . (
(if condition then-clause else-clause)
(loop for item in list do ...)))
(text-processing . (
(style . (tone voice perspective))
(structure . (intro body conclusion))))
(data-processing . (
(data-structure . (type format schema))
(steps . (step1 step2 step3))))
(error-handling . (
(condition-case ...
(error ...))))
(dependencies . (
(require 'library-name)))
(usage-instructions . "
输入格式: ...
预期输出: ...
具体说明: ..."))))

(generate-prompt prompt-structure goal)))

(defun generate-prompt (structure goal)
"基于结构和目标生成实际提示"
(let ((prompt ""))
;; 生成元数据
(setq prompt (concat prompt (generate-metadata (cdr (assoc 'metadata structure)) goal)))

;; 生成主函数
(setq prompt (concat prompt "\n\n" (generate-main-function (cdr (assoc 'main-function structure)) goal)))

;; 生成辅助函数
(setq prompt (concat prompt "\n\n" (generate-helper-functions (cdr (assoc 'helper-functions structure)) goal)))

;; 生成属性
(setq prompt (concat prompt "\n\n" (generate-properties (cdr (assoc 'properties structure)) goal)))

;; 生成控制结构
(setq prompt (concat prompt "\n\n" (generate-control-structures (cdr (assoc 'control-structures structure)) goal)))

;; 生成文本处理(如果适用)
(when (string-match-p "text" goal)
(setq prompt (concat prompt "\n\n" (generate-text-processing (cdr (assoc 'text-processing structure)) goal))))

;; 生成数据处理(如果适用)
(when (string-match-p "data" goal)
(setq prompt (concat prompt "\n\n" (generate-data-processing (cdr (assoc 'data-processing structure)) goal))))

;; 生成错误处理
(setq prompt (concat prompt "\n\n" (generate-error-handling (cdr (assoc 'error-handling structure)) goal)))

;; 生成依赖
(setq prompt (concat prompt "\n\n" (generate-dependencies (cdr (assoc 'dependencies structure)) goal)))

;; 生成使用说明
(setq prompt (concat prompt "\n\n" (generate-usage-instructions (cdr (assoc 'usage-instructions structure)) goal)))

prompt))

;; 生成每个部分提示的辅助函数
(defun generate-metadata (metadata goal) ...)
(defun generate-main-function (main-function goal) ...)
(defun generate-helper-functions (helper-functions goal) ...)
(defun generate-properties (properties goal) ...)
(defun generate-control-structures (control-structures goal) ...)
(defun generate-text-processing (text-processing goal) ...)
(defun generate-data-processing (data-processing goal) ...)
(defun generate-error-handling (error-handling goal) ...)
(defun generate-dependencies (dependencies goal) ...)
(defun generate-usage-instructions (instructions goal) ...)

;; 用法
;; (generate-lisp-prompt "创建一个文本摘要提示")
</content>
</artifact>

 

 

This hint instruction and code is mainly used to generate Lisp style pseudo-code hints. Its function is explained below:

``

This section gives instructions on how to handle the code or artifacts that follow:

  • The artifact is a finished product generated from a previous conversation.
  • When reproducing the artifact, it is required to show the code content line by line and leave it as is without any changes.
  • Any modification or remixing should preserve the integrity of the content and not allow the omission of content or the addition of simplifying notes.

 

``

This section defines the title, type, language, and code content of the artifact.

1. caption (``).<br /> 工件的标题是 “Lisp 元提示生成器”,意味着该代码的目的是生成 Lisp 风格的提示。</p> <p>2. <strong>typology</strong> (``).<br /> The type `application/vnd.ant.code` means that the artifact is of a type that is Lisp style code.</p> <p>3. <strong>multilingualism</strong> (``).<br /> The language is also `application/vnd.ant.code`, indicating that the contents of the artifact are programming code.</p> <p>4. <strong>element</strong> (``).<br /> The body of the artifact is a piece of Lisp code that generates hints for creating Lisp-style pseudocode based on a given target.</p> <p> </p> <h3>Lisp Code Interpretation</h3> <p>The main purpose of the code is to automatically generate a structured piece of Lisp style hints based on a goal (`goal`). The following is an explanation of the main parts of the code:</p> <p>1. <strong>`generate-lisp-prompt` function</strong>:</p> <ul> <li>This is the main function, which takes a `goal` and generates a Lisp-style hint based on it.</li> <li>This function defines a prompt structure (`prompt-structure`) that contains:</li> <li><strong>metadata</strong> (`metadata`): Includes information such as author, version, model, and purpose.</li> <li><strong>Main function definition</strong> (`main-function`): Pseudo-code main function structure.</li> <li><strong>helper function</strong> (`helper-functions`): Functions used to generate some helper functions.</li> <li><strong>causality</strong> (`properties`): Some custom key-value pairs.</li> <li><strong>control structure</strong> (`control-structures`): Contains conditional statements (such as `if-else`) and loops.</li> <li><strong>text processing</strong> (`text-processing`): Contains information about the style, tone, structure, etc. of the text.</li> <li><strong>data processing</strong> (`data-processing`): defines the data structure and its processing steps.</li> <li><strong>error handling</strong> (`error-handling`): describes the handling logic in case of an error.</li> <li><strong>dependencies</strong> (`dependencies`): Lists the dependent libraries to be loaded.</li> <li><strong>Instructions for use</strong> (`usage-instructions`): explains input formats, expected output, etc.</li> </ul> <p> </p> <p>2. <strong>`generate-prompt` function</strong>:</p> <ul> <li>Step-by-step generation of the final prompt based on the incoming structure (`structure`) and goal (`goal`).</li> <li>This function generates code snippets for each part (e.g., metadata, main function, auxiliary functions, etc.) in turn and stitches them together.</li> </ul> <p> </p> <p>3. <strong>Auxiliary Generator Functions</strong>:</p> <ul> <li>Examples include functions such as `generate-metadata`, `generate-main-function`, and `generate-helper-functions`, each of which is responsible for generating a specific part of the prompt.</li> </ul> <p>4. <strong>Instructions for use</strong>:</p> <ul> <li>使用时,可以调用 `(generate-lisp-prompt “创建一个文本摘要提示”)` 来生成一个基于“创建文本摘要提示”目标的 Lisp 风格提示。</li> </ul> <p> </p> <h3>summarize</h3> <p>Overall, the function of this code is to automatically generate Lisp-style pseudo-code hints, with the main purpose of providing a hinting framework for the target task (e.g., text processing, data processing, etc.).</p> <div id="related_posts"><h3>Related articles</h3><ul><li><a href="https://www.kdjingpai.com/en/prompts/dia-xitongtishici/" title="Dia System Cues">Dia System Cues</a></li><li><a href="https://www.kdjingpai.com/en/prompts/grok-guanfanggongbuxi/" title="Grok officially announced the system cue.">Grok officially announced the system cue.</a></li><li><a href="https://www.kdjingpai.com/en/prompts/kouzikongjianxitongan/" title="Button Space System Prompt Words">Button Space System Prompt Words</a></li><li><a href="https://www.kdjingpai.com/en/prompts/notebooklm-xitongti/" title="NotebookLM System Prompts">NotebookLM System Prompts</a></li><li><a href="https://www.kdjingpai.com/en/prompts/weiruan-github-copilo/" title="Microsoft GitHub Copilot System Prompt Word Explanation">Microsoft GitHub Copilot System Prompt Word Explanation</a></li><li><a href="https://www.kdjingpai.com/en/prompts/claude-wangyebanyu/" title="Differences between Claude's web version and API experience: Demystifying nearly 100,000 words of system prompts">Differences between Claude's web version and API experience: Demystifying nearly 100,000 words of system prompts</a></li></ul></div><div class="tb-copyright -rds art">May not be reproduced without permission:<a href="https://www.kdjingpai.com/en">Chief AI Sharing Circle</a> " <a href="https://www.kdjingpai.com/en/prompts/shengchengweidaima/">Generate "pseudo-code" meta prompts for precise control of output formatting</a></div></div><div class="art-footer"><div class="art-tool"><span class="-meta tb-like" data-id="6117" data-event="like_add"><i class="tbfa"></i><i class="tbfa"></i><span class="count">0</span><i class="status">kudos</i></span><div class="social-share" data-event="show_share"><span class="-meta tbfa fa-share"> share (joys, benefits, privileges etc) with others</span></div></div></div></div><div class="post-nav tb-b-card m-no-rds"><div class="-item prev"><a target="_blank" href="https://www.kdjingpai.com/en/knowledge/ai-ux-shejiyanjiuai/" rel="prev"><i class="tbfa fa-left"></i><span class="-title">AI UX Design Study Guide</span></a></div><div class="-item next"><a target="_blank" href="https://www.kdjingpai.com/en/knowledge/prompt-gaojijiqiao/" rel="next"><span class="-title">Prompt Advanced Tips: Precise Control of LLM Output and Definition of Execution Logic with Pseudo-Code</span><i class="tbfa fa-right"></i></a></div></div><div class="tb-relevant"><div class="tb-card-title"><h3>Recommended</h3><div class="-title-tabs"></div></div><ul class="post-list -rds tb-row"><li class="post-news -rds" data-id="31639"><a class="info-wraper" target="_blank" href="https://www.kdjingpai.com/en/prompts/dia-xitongtishici/"><div class="tb-thumb -rds"><img class="-rds" alt="Dia 系统提示词"src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-no-translation=""></div><div class="p-t-w">Dia System Cues</div><p class="tb-excerpt">Here's the official Dia Browser prompt: Original prompt You are an AI chat product called Dia, created by The Browser Company of New York. y....</p></a></li><li class="post-news -rds" data-id="31408"><a class="info-wraper" target="_blank" href="https://www.kdjingpai.com/en/prompts/grok-guanfanggongbuxi/"><div class="tb-thumb -rds"><img class="-rds" alt="Grok 官方公布系统提示词"src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-src="https://www.kdjingpai.com/wp-content/uploads/2025/02/73699df8a19bc6b.png" data-no-translation=""></div><div class="p-t-w">Grok officially announced the system cue.</div><p class="tb-excerpt">  Core Conversation Prompts () This template defines the behavior of Grok 3 conversations on the grok.com and X platforms. The prompts include role settings, response styles, and contextual processing logic. How to do it : Open ...</p></a></li><li class="post-news -rds" data-id="30919"><a class="info-wraper" target="_blank" href="https://www.kdjingpai.com/en/prompts/kouzikongjianxitongan/"><div class="tb-thumb -rds"><img class="-rds" alt="扣子空间系统提示词"src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-src="https://www.kdjingpai.com/wp-content/uploads/2025/05/4d90033e88c97d3.png" data-no-translation=""></div><div class="p-t-w">Button Space System Prompt Words</div><p class="tb-excerpt">  Cue word You are a task execution expert, specializing in calling multiple tools to complete the task at hand based on the user's needs. # Message Module Description - Must respond using tools (function calls), plain text responses are prohibited - Try to solve problems independently, use message_a...</p></a></li><li class="post-news -rds" data-id="30917"><a class="info-wraper" target="_blank" href="https://www.kdjingpai.com/en/prompts/notebooklm-xitongti/"><div class="tb-thumb -rds"><img class="-rds" alt="NotebookLM 系统提示词"src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-src="https://www.kdjingpai.com/wp-content/uploads/2025/05/cd0f6adef11fe17.png" data-no-translation=""></div><div class="p-t-w">NotebookLM System Prompts</div><p class="tb-excerpt">  Recently NotebookLM has been supported in Chinese, and it's one of the more recommended personal knowledge management tools among free products in my opinion. The two main features of NotebookLM are: quoting from accurate sources and generating podcasts of two-person conversations. Citing Accurate Sources Quiz Words You are a...</p></a></li><li class="post-news -rds" data-id="30915"><a class="info-wraper" target="_blank" href="https://www.kdjingpai.com/en/prompts/weiruan-github-copilo/"><div class="tb-thumb -rds"><img class="-rds" alt="微软 GitHub Copilot 系统提示词解析"src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-src="https://www.kdjingpai.com/wp-content/uploads/2025/05/53e238cceb5fcb1.jpg" data-no-translation=""></div><div class="p-t-w">Microsoft GitHub Copilot System Prompt Word Explanation</div><p class="tb-excerpt">A well-designed System Prompt is critical for users and developers who want to work efficiently with the Large Language Model (LLM). It acts as a well-prepared action plan and behavioral manual for the AI, directly affecting the quality of the AI's response, consistency of behavior, and ability to complete tasks. This...</p></a></li><li class="post-news -rds" data-id="30914"><a class="info-wraper" target="_blank" href="https://www.kdjingpai.com/en/prompts/claude-wangyebanyu/"><div class="tb-thumb -rds"><img class="-rds" alt="Claude 网页版与 API 体验差异:解密近十万字的系统提示词"src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-src="https://www.kdjingpai.com/wp-content/uploads/2025/05/5f01077aba08f4e.png" data-no-translation=""></div><div class="p-t-w">Differences between Claude's web version and API experience: Demystifying nearly 100,000 words of system prompts</div><p class="tb-excerpt">Many users have observed that there seems to be a subtle but perceptible difference between the experience they get from calling Anthropic's Claude API directly and the official Claude web version. Much of this difference stems from the complex System Prompt design behind the web version. These prompts...</p></a></li><li class="post-news -rds" data-id="30891"><a class="info-wraper" target="_blank" href="https://www.kdjingpai.com/en/prompts/pdfwendangzhuanhuanweiai/"><div class="tb-thumb -rds"><img class="-rds" alt="PDF文档转换为可视化网页的提示词"src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-src="https://www.kdjingpai.com/wp-content/uploads/2025/05/6626f394b7e5d9c.png" data-no-translation=""></div><div class="p-t-w">Tips for converting PDF documents to visual web pages</div><p class="tb-excerpt">Prompt Words I will give you a file to analyze the content and transform it into a beautiful and nice Chinese visual web portfolio: ## Content Requirements - All page content must be in Simplified Chinese - Maintain the core information of the original file, but present it in a more readable, visual way - Add author information at the bottom of the page...</p></a></li><li class="post-news -rds" data-id="30712"><a class="info-wraper" target="_blank" href="https://www.kdjingpai.com/en/prompts/shiyong-cursor-kaifa/"><div class="tb-thumb -rds"><img class="-rds" alt="使用 Cursor 开发 Dify 插件的提示词"src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-src="https://www.kdjingpai.com/wp-content/themes/nab/assets/img/default-thumb.jpg" data-no-translation=""></div><div class="p-t-w">Tips for Developing Dify Plugins with Cursor</div><p class="tb-excerpt">You are a senior developer that can help me with developing Dify Plugin Tool, which is an AI Agent Tool that can be used...</p></a></li></ul></div> </div> <div class="tb-sidebar" data-roll="1 2"><div class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div id="custom-search-sidebar"> <style> /* 容器样式 */ #custom-search-sidebar { width: 100%; margin: 2px; padding: 10px; font-family: Arial, sans-serif; text-align: center; box-sizing: border-box; } /* 公共版块样式 */ .section { margin-bottom: 20px; } .section h3 { margin: 0 0 8px; text-align: left; font-size: 18px; color: #333; } .section p { margin: 0 0 15px; line-height: 1.6; color: #666; font-size: 14px; text-align: left; } /* 搜索部分样式 */ #custom-search-input { width: 100%; padding: 12px; border-radius: 4px; border: 1px solid #ddd; margin-bottom: 8px; box-sizing: border-box; font-size: 16px; } #custom-search-button { width: 100%; padding: 12px; border-radius: 4px; background-color: #ff5722; border: none; color: white; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; font-size: 16px; } #custom-search-button:hover { background-color: #e64a19; transform: scale(1.05); } /* 广告部分样式 */ #custom-ad { margin-top: 20px; padding: 10px; border: 1px solid #eee; border-radius: 4px; background-color: #f9f9f9; } </style> <!-- 搜索部分 --> <div class="section" id="search-section"> <h3>Can't find AI tools? Try here!</h3> <p>Just type in the keyword <strong>Accessibility Bing Search</strong>You can quickly find all the AI tools on this site.</p> <input type="text" id="custom-search-input" placeholder="Enter keywords, e.g. GPT, translation tools"> <button id="custom-search-button">Search Now</button> </div> <!-- 广告部分 --> <div id="custom-ad"> <a href="https://www.kdjingpai.com/feed/tree/" target="_blank" rel="noopener noreferrer nofollow" style="color: #000; font-weight: bold; text-decoration: none; transition: color 0.3s ease;">   <span style="color: #ff5722;">🔥Trae x Beanbag MarsCode Big upgrade!</span><br>   <span style="color: #43A047;">💡 free to use</span>, AI programming capabilities are once again on the rise! 🚀 </a> </div> <script> document.addEventListener('DOMContentLoaded', function() { const searchInput = document.getElementById('custom-search-input'); const searchButton = document.getElementById('custom-search-button'); // 配置 - 修改此处设置您的域名 const siteDomain = 'www.kdjingpai.com'; function performSearch() { const searchTerm = searchInput.value.trim(); if (searchTerm) { // 创建一个表单元素 const form = document.createElement('form'); form.method = 'GET'; form.action = 'https://www.bing.com/search'; form.target = '_blank'; document.body.appendChild(form); // 添加站点限制参数 (q1) - 不会显示在搜索框 const siteParam = document.createElement('input'); siteParam.type = 'hidden'; siteParam.name = 'q1'; siteParam.value = 'site:' + siteDomain; form.appendChild(siteParam); // 添加搜索词参数 (q) const queryParam = document.createElement('input'); queryParam.type = 'hidden'; queryParam.name = 'q'; queryParam.value = searchTerm; form.appendChild(queryParam); // 添加必应搜索框格式参数 const formParam = document.createElement('input'); formParam.type = 'hidden'; formParam.name = 'form'; formParam.value = 'QBLH'; form.appendChild(formParam); // 自动检测用户语言并添加相应参数 const userLang = navigator.language || navigator.userLanguage; if (userLang) { const langParts = userLang.split('-'); if (langParts.length > 0) { // 设置市场和语言 const setLang = document.createElement('input'); setLang.type = 'hidden'; setLang.name = 'setlang'; setLang.value = langParts[0].toLowerCase(); form.appendChild(setLang); if (langParts.length > 1) { const setMkt = document.createElement('input'); setMkt.type = 'hidden'; setMkt.name = 'setmkt'; setMkt.value = userLang.toLowerCase(); form.appendChild(setMkt); } } } // 提交表单并移除 form.submit(); document.body.removeChild(form); // 不清空搜索框,保留搜索词 } else { alert('请输入关键词进行搜索!'); } } searchButton.addEventListener('click', performSearch); searchInput.addEventListener('keypress', function(event) { if (event.key === 'Enter') { performSearch(); } }); }); </script> </div></div></div></div></div> <div class="tb-rtools"><div class="-item -contact -rds tb-hover-trigger" data-event="toggle_f_contact"><a target="_blank" class="-info" href="/en/w262533099@gmail.com/"><span class="tbfa fa-email"></span></a><div class="tb-tooltip -l-c -pop"><div class="-inner -rds"><p class="-desc">inbox</p></div></div></div><div class="-item -contact -rds tb-hover-trigger" data-event="toggle_f_contact"><a target="_blank" class="-info" href="https://www.baidu.com/"><span class="tbfa fa-custom-contact"></span></a><div class="tb-tooltip -l-c -pop"><div class="-inner -rds"><p class="-desc">Contact Us</p></div></div></div><div class="-item -rds scroll-top tb-hover-trigger" data-event="scroll_top"><span class="-info tbfa fa-go-top"></span><div class="tb-tooltip -l-c -pop"><div class="-inner -rds"><p class="-desc">Top</p></div></div></div></div><footer class="tb-main-wraper"><div class="tb-footer"><div class="-by">Copyright © 2023<a class="-item" rel="nofollow" target="_blank" href="http://beian.miit.gov.cn">Beijing ICP No. 2024074324-2</a></div></div></footer><div class="tb-modal -share-modal"><div class="-mask" data-event="hide_share"></div><div class="m-inner -rds"><span class="tbfa fa-close" data-event="hide_share"></span><div class="social-share-content"><div class="wechat-qrcode"><img alt="qrcode" src="https://www.kdjingpai.com/wp-content/themes/nab/action/qrcode.php?t=https://www.kdjingpai.com/en/prompts/shengchengweidaima/"><p>WeChat Scan Code Share</p></div><div class="-others" style="width:280px"><span class="-s-item tbfa fa-qq" data-type="qq" data-event="share"></span><span class="-s-item tbfa fa-weibo" data-type="weibo" data-event="share"></span><span class="-s-item tbfa fa-copy" data-type="copy" data-event="share"></span><span class="-s-item tbfa fa-twitter" data-type="twitter" data-event="share"></span><span class="-s-item tbfa fa-facebook" data-type="facebook" data-event="share"></span></div><div class="-msg"></div></div></div></div></div> <script> window.tbCtx={"themeUri":"https:\/\/www.kdjingpai.com\/wp-content\/themes\/nab","ajaxUri":"https:\/\/www.kdjingpai.com\/wp-admin\/admin-ajax.php","article_swiper":0,"ver":"2.2","find_url":"https:\/\/www.kdjingpai.com\/wp-login.php?action=lostpassword","event":[],"share_img":"","is_home":0,"blog_url":"https:\/\/www.kdjingpai.com\/en","vercode":1,"vc_params":""}</script> <template id="tp-language" data-tp-language="en_US"></template><script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/en\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/nab\/*","\/en\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script> window.addEventListener("load", function() { let element = document.createElement("script"); element.async = true; element.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8152038832870620"; element.crossOrigin = "anonymous"; document.body.appendChild(element); }); </script> <div id="trp-floater-ls" onclick="" data-no-translation class="trp-language-switcher-container trp-floater-ls-names trp-bottom-right trp-color-light flags-full-names" > <div id="trp-floater-ls-current-language" class="trp-with-flags"> <a href="#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"> <img class="trp-flag-image" src="https://www.kdjingpai.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png" width="18" height="12" alt="en_US" title="English" data-no-translation="">English </a> </div> <div id="trp-floater-ls-language-list" class="trp-with-flags" > <div class="trp-language-wrap trp-language-wrap-bottom"> <a href="https://www.kdjingpai.com/prompts/shengchengweidaima/" title="简体中文"> <img class="trp-flag-image" src="https://www.kdjingpai.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/zh_CN.png" width="18" height="12" alt="zh_CN" title="简体中文" data-no-translation="">简体中文 </a> <a href="https://www.kdjingpai.com/ja/prompts/shengchengweidaima/" title="日本語"> <img class="trp-flag-image" src="https://www.kdjingpai.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/ja.png" width="18" height="12" alt="ja" title="日本語" data-no-translation="">日本語 </a> <a href="https://www.kdjingpai.com/de/prompts/shengchengweidaima/" title="Deutsch"> <img class="trp-flag-image" src="https://www.kdjingpai.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/de_DE.png" width="18" height="12" alt="de_DE" title="Deutsch" data-no-translation="">Deutsch </a> <a href="https://www.kdjingpai.com/pt/prompts/shengchengweidaima/" title="Português do Brasil"> <img class="trp-flag-image" src="https://www.kdjingpai.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/pt_BR.png" width="18" height="12" alt="pt_BR" title="Português do Brasil" data-no-translation="">Português do Brasil </a> <a href="#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"><img class="trp-flag-image" src="https://www.kdjingpai.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png" width="18" height="12" alt="en_US" title="English" data-no-translation="">English</a></div> </div> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?feb8ee59c62d3151b90ef942815a5216"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script><script type="text/javascript" id="main-js-extra"> /* <![CDATA[ */ var tbl = {"img_size":"200","T001":"\u5f85\u5ba1\u6838","T002":"\u56de\u590d","T004":"\u5df2\u590d\u5236\u94fe\u63a5","T005":"\u9a8c\u8bc1\u7801","T006":"\u8bf7\u8f93\u5165\u9a8c\u8bc1\u7801","T007":"\u63d0\u4ea4","T008":"\u9a8c\u8bc1\u7801\u9519\u8bef","T009":"\u5fae\u4fe1\u626b\u7801\u5206\u4eab","T010":"\u767b\u5f55","T011":"\u7528\u6237\u540d\u6216\u90ae\u7bb1","T012":"\u8fd8\u6ca1\u6709\u8d26\u53f7\uff1f\u73b0\u5728","T013":"\u6ce8\u518c","T014":"\u5fd8\u8bb0\u5bc6\u7801 ?","T015":"\u8bf7\u8f93\u5165\u7528\u6237\u540d","T016":"\u5df2\u6709\u8d26\u53f7\uff0c ","T017":"\u8bf7\u586b\u5199\u7528\u6237\u540d\u3001\u5bc6\u7801","T018":"\u8bf7\u586b\u5199\u7528\u6237\u540d\u3001\u90ae\u7bb1\u3001\u5bc6\u7801","T019":"\u7528\u6237\u540d\u662f\u5b57\u6bcd\u5f00\u5934\u7684\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u4e0b\u5212\u7ebf\u7ec4\u5408\u76842-20\u4f4d\u5b57\u7b26","T020":"\u90ae\u7bb1\u683c\u5f0f\u9519\u8bef","T021":"\u5185\u5bb9\u4e0d\u80fd\u4e3a\u7a7a","T023":"\u8bf7\u586b\u5199\u6709\u6548\u7684\u90ae\u7bb1\u5730\u5740","T024":"\u56fe\u7247\u683c\u5f0f\u4e0d\u6b63\u786e","T025":"\u56fe\u7247\u8bf7\u4e0d\u8d85\u8fc7 %VAR% KB","T027":"\u7f51\u7ad9\u540d\u79f0\u4e0d\u80fd\u4e3a\u7a7a\uff0c\u4e14\u5c0f\u4e8e50\u4e2a\u5b57\u7b26","T028":"\u5185\u5bb9\u4e0d\u80fd\u4e3a\u7a7a\uff0c\u4e14\u4ecb\u4e8e10-10000\u5b57\u4e4b\u95f4","T030":"\u7528\u6237\u540d\uff08\u90ae\u7bb1\uff09\u6216\u5bc6\u7801\u9519\u8bef","T031":"\u4f60\u5df2\u7ecf\u767b\u5f55","T032":"\u7528\u6237\u540d\u9519\u8bef","T033":"\u90ae\u7bb1\u9519\u8bef","T034":"\u6210\u529f\u767b\u5f55","T035":"\u7528\u6237\u540d\u5df2\u5b58\u5728","T036":"\u90ae\u7bb1\u5df2\u5b58\u5728","T037":"\u6ce8\u518c\u5931\u8d25\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5","T038":"\u6ce8\u518c\u6210\u529f","T040":"\u9000\u51fa\u6210\u529f","T041":"\u8bf7\u9009\u62e9\u56fe\u7247","T042":"\u56fe\u7247\u4e0a\u4f20\u5931\u8d25\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5","T043":"\u56fe\u7247\u4e0a\u4f20\u6210\u529f","T044":"\u6295\u7a3f\u672a\u5f00\u542f","T045":"\u4e24\u6b21\u6295\u7a3f\u65f6\u95f4\u95f4\u9694\u592a\u77ed\uff0c\u8bf7\u7a0d\u5019\u518d\u6765","T046":"\u9009\u62e9\u7684\u5206\u7c7b\u4e0d\u5b58\u5728","T047":"\u7f51\u7ad9\u540d\u79f0\u91cd\u590d","T048":"\u6295\u7a3f\u5931\u8d25\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5","T049":"\u6295\u7a3f\u6210\u529f\uff0c\u7b49\u5f85\u5ba1\u6838\u4e2d","T050":"url \u4e0d\u5b58\u5728","T051":"\u8bf7\u5728\u3010\u5916\u89c2 - \u4e3b\u9898\u8bbe\u7f6e - \u5206\u4eab\u3011\u4e2d\u8bbe\u7f6eappID\u548cappsecret","T052":"\u5f53\u524d\u6587\u7ae0\u5df2\u5220\u9664\u6216\u672a\u53d1\u5e03\uff01","T053":"\u8bc4\u8bba\u5df2\u5173\u95ed\uff01","T054":"\u8bc4\u8bba\u6210\u529f","T055":"\u70b9\u8d5e\u6210\u529f","T056":"\u5df2\u53d6\u6d88\u70b9\u8d5e","T057":"\u8bf7\u5148\u767b\u5f55","T058":"\u53c2\u6570\u5f02\u5e38\uff0c\u8bf7\u91cd\u8bd5","T059":"\u6536\u85cf\u6210\u529f","T060":"\u5df2\u53d6\u6d88\u6536\u85cf","T061":"\u5bc6\u7801","T062":"\u90ae\u7bb1","T063":"\u5bc6\u7801\u81f3\u5c116\u4f4d\u5b57\u7b26","T064":"\u8bf7\u8f93\u5165\u6709\u6548\u5173\u952e\u8bcd","T065":"24\u5c0f\u65f6\u5185\u6700\u591a\u53ef\u4e0a\u4f20 %VAR% \u5f20\u56fe\u7247\uff01","T066":"\u8bf7\u6b63\u786e\u586b\u5199\u7f51\u5740","T067":"\u8bf7\u9009\u62e9\u6240\u5c5e\u5206\u7c7b","T068":"\u672a\u5f00\u653e\u6ce8\u518c","T069":"\u4f60\u5df2\u8d5e"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.kdjingpai.com/wp-content/themes/nab/assets/js/main.js?ver=2.2" id="main-js"></script> <script type="text/javascript" src="https://www.kdjingpai.com/wp-includes/js/comment-reply.min.js" id="comment-reply-js" async="async" data-wp-strategy="async"></script> <script type="text/javascript" id="wbp-magicpost-js-before"> /* <![CDATA[ */ var wb_magicpost_cnf={"ver":"1.3.1","pd_name":"MagicPost","dir":"https:\/\/www.kdjingpai.com\/wp-content\/plugins\/magicpost\/","ajax_url":"https:\/\/www.kdjingpai.com\/wp-admin\/admin-ajax.php","pid":6117,"uid":0,"share_switch":"0","dl_switch":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.kdjingpai.com/wp-content/plugins/magicpost/assets/wbp_magicpost.js?ver=1.3.1" id="wbp-magicpost-js"></script> </body> </html>