{"id":64124,"date":"2026-01-22T20:24:30","date_gmt":"2026-01-22T12:24:30","guid":{"rendered":"https:\/\/www.wsisp.com\/helps\/64124.html"},"modified":"2026-01-22T20:24:30","modified_gmt":"2026-01-22T12:24:30","slug":"qt%e6%96%b0%e6%89%8b%e6%97%a5%e8%ae%b0025-w002%e7%a8%8b%e5%ba%8f%e4%bb%a3%e7%a0%81","status":"publish","type":"post","link":"https:\/\/www.wsisp.com\/helps\/64124.html","title":{"rendered":"QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801"},"content":{"rendered":"<p>\u4e00\u3001pro\u6587\u4ef6&#xff1a;W002.pro<\/p>\n<p>QT       &#043;&#061; core gui<\/p>\n<p>greaterThan(QT_MAJOR_VERSION, 4): QT &#043;&#061; widgets<\/p>\n<p>CONFIG &#043;&#061; c&#043;&#043;17<\/p>\n<p># You can make your code fail to compile if it uses deprecated APIs.<br \/>\n# In order to do so, uncomment the following line.<br \/>\n#DEFINES &#043;&#061; QT_DISABLE_DEPRECATED_BEFORE&#061;0x060000    # disables all the APIs deprecated before Qt 6.0.0<\/p>\n<p>SOURCES &#043;&#061; \\\\<br \/>\n    main.cpp \\\\<br \/>\n    wintwo.cpp<\/p>\n<p>HEADERS &#043;&#061; \\\\<br \/>\n    wintwo.h<\/p>\n<p># Default rules for deployment.<br \/>\nqnx: target.path &#061; \/tmp\/$${TARGET}\/bin<br \/>\nelse: unix:!android: target.path &#061; \/opt\/$${TARGET}\/bin<br \/>\n!isEmpty(target.path): INSTALLS &#043;&#061; target<\/p>\n<p>RESOURCES &#043;&#061;<\/p>\n<p>\u4e8c\u3001\u5934\u6587\u4ef6&#xff1a;wintwo.h<\/p>\n<p>#ifndef WINTWO_H<br \/>\n#define WINTWO_H<\/p>\n<p>#include &lt;QMainWindow&gt;<\/p>\n<p>class WinTwo : public QMainWindow<br \/>\n{<br \/>\n    Q_OBJECT<\/p>\n<p>public:<br \/>\n    WinTwo(QWidget *parent &#061; nullptr);<br \/>\n    ~WinTwo();<br \/>\n    QString  GetTipInformation(int Index,QDate d,QTime t,QString obj);<br \/>\nprivate:<br \/>\n    int nowIndex&#061;0;<br \/>\n};<br \/>\n#endif \/\/ WINTWO_H<\/p>\n<p>\u4e09\u3001\u4e3b\u7a0b\u5e8f&#xff1a;main.cpp<\/p>\n<p>#include &#034;wintwo.h&#034;<\/p>\n<p>#include &lt;QApplication&gt;<\/p>\n<p>int main(int argc, char *argv[])<br \/>\n{<br \/>\n    QApplication a(argc, argv);<br \/>\n    WinTwo w;<br \/>\n    w.show();<br \/>\n    return a.exec();<br \/>\n}<\/p>\n<p>\u56db\u3001\u6838\u5fc3\u7a0b\u5e8f&#xff1a;wintwo.cpp<\/p>\n<p>#include &#034;wintwo.h&#034;<br \/>\n#include&lt;QGroupBox&gt;<br \/>\n#include&lt;QLabel&gt;<br \/>\n#include&lt;QComboBox&gt;<br \/>\n#include&lt;QDateEdit&gt;<br \/>\n#include&lt;QStringList&gt;<br \/>\n#include&lt;QTextEdit&gt;<br \/>\n#include&lt;QPushButton&gt;<br \/>\n#include&lt;QFile&gt;<br \/>\n#include&lt;QDir&gt;<br \/>\n#include&lt;QDebug&gt;<br \/>\n#include&lt;QGuiApplication&gt;<br \/>\n#include&lt;QScreen&gt;<\/p>\n<p>WinTwo::WinTwo(QWidget *parent)<br \/>\n    : QMainWindow(parent)<br \/>\n{<br \/>\n    setWindowTitle(&#034;QT\u7b2c\u4e8c\u4e2a\u7a0b\u5e8f &#8211; \u6bcf\u65e5\u4e00\u9898&#034;);<br \/>\n    setFixedSize(304,504);<br \/>\n    QGroupBox *grp &#061; new QGroupBox(&#034;\u6bcf\u65e5\u4e00\u9898&#034;,this);<br \/>\n    grp-&gt;move(2,2);<br \/>\n    grp-&gt;resize(300,500);<\/p>\n<p>    QLabel *l1 &#061; new QLabel(&#034;\u65e5\u671f:&#034;,grp);<br \/>\n    l1-&gt;resize(80,30);<br \/>\n    l1-&gt;move(10,30);<\/p>\n<p>    QLabel *l2 &#061; new QLabel(&#034;\u65f6\u95f4:&#034;,grp);<br \/>\n    l2-&gt;resize(80,30);<br \/>\n    l2-&gt;move(10,60);<\/p>\n<p>    QLabel *l3 &#061; new QLabel(&#034;\u4e3b\u9898:&#034;,grp);<br \/>\n    l3-&gt;resize(80,30);<br \/>\n    l3-&gt;move(10,90);<\/p>\n<p>    QDateEdit *cmbdate &#061; new QDateEdit(grp);<br \/>\n    cmbdate-&gt;resize(120,30);<br \/>\n    cmbdate-&gt;move(95,30);<br \/>\n    cmbdate-&gt;setDate(QDate::currentDate());<br \/>\n    QTimeEdit *cmbtime &#061; new QTimeEdit(grp);<br \/>\n    cmbtime-&gt;resize(120,30);<br \/>\n    cmbtime-&gt;move(95,60);<br \/>\n    cmbtime-&gt;setTime(QTime::currentTime());<br \/>\n    QComboBox *cmbobj &#061; new QComboBox(grp);<br \/>\n    cmbobj-&gt;resize(120,30);<br \/>\n    cmbobj-&gt;move(95,90);<\/p>\n<p>    cmbobj-&gt;addItems({&#034;QWidget&#034;,&#034;QMainWindow&#034;,&#034;QDialog&#034;});<br \/>\n    cmbobj-&gt;setCurrentIndex(0);<\/p>\n<p>    QTextEdit *txt &#061; new QTextEdit(grp);<br \/>\n    txt-&gt;resize(280,500-140);<br \/>\n    txt-&gt;move(10,130);<br \/>\n    txt-&gt;setReadOnly(true);<br \/>\n    QPushButton *btnup &#061; new QPushButton(&#034;\u4e0a\u4e00\u9898&#034;,grp);<br \/>\n    btnup-&gt;resize(65,40);<br \/>\n    btnup-&gt;move(225,30);<br \/>\n    QPushButton *btndw &#061; new QPushButton(&#034;\u4e0b\u4e00\u9898&#034;,grp);<br \/>\n    btndw-&gt;resize(65,40);<br \/>\n    btndw-&gt;move(225,80);<br \/>\n    connect(btnup,&amp;QPushButton::clicked,this,[&#061;](){<br \/>\n        if(nowIndex&lt;&#061;0)<br \/>\n        {<br \/>\n            nowIndex&#061;100;<br \/>\n        }<br \/>\n        else<br \/>\n        {<br \/>\n            nowIndex&#8211;;<br \/>\n        }<br \/>\n          txt-&gt;setText(GetTipInformation(nowIndex,cmbdate-&gt;date(),cmbtime-&gt;time(),cmbobj-&gt;currentText()));<\/p>\n<p>        \/\/\u4e0a\u4e00\u9898<br \/>\n    });<br \/>\n    connect(btndw,&amp;QPushButton::clicked,this,[&#061;](){<br \/>\n        if(nowIndex&gt;&#061;100)<br \/>\n        {<br \/>\n            nowIndex&#061;0;<br \/>\n        }<br \/>\n        else<br \/>\n        {<br \/>\n            nowIndex&#043;&#043;;<br \/>\n        }<br \/>\n          txt-&gt;setText(GetTipInformation(nowIndex,cmbdate-&gt;date(),cmbtime-&gt;time(),cmbobj-&gt;currentText()));<br \/>\n        \/\/\u4e0a\u4e00\u9898<br \/>\n    });<br \/>\n    txt-&gt;setText(GetTipInformation(nowIndex,cmbdate-&gt;date(),cmbtime-&gt;time(),cmbobj-&gt;currentText()));<\/p>\n<p>    this-&gt;move((QGuiApplication::primaryScreen()-&gt;size().width()-this-&gt;width())\/2,<br \/>\n               (QGuiApplication::primaryScreen()-&gt;size().height()-this-&gt;height())\/2);<br \/>\n}<\/p>\n<p>QString  WinTwo::GetTipInformation(int Index,QDate d,QTime t,QString obj)<br \/>\n{<br \/>\n    QString path&#061;QDir::currentPath()&#043; &#034;\/TipFiles\/Tipinfo&#034;&#043;QString::number(Index)&#043;&#034;.txt&#034;;<br \/>\n    QFile file(path);<br \/>\n    QString dat&#061;&#034;\u6ca1\u6709\u53d1\u73b0\u6587\u4ef6&#034;&#043;path;<br \/>\n    if(file.exists())<br \/>\n    {<br \/>\n        file.open(QIODevice::ReadOnly);<br \/>\n        dat&#061;file.readAll();<br \/>\n        file.close();<br \/>\n    }<br \/>\n    QString result&#061;QString(&#034;\u6bcf\u65e5\u4e00\u9898[%1 %2]&#061;&gt;%3:%4\\\\n%5&#034;).<br \/>\n            arg(d.toString(&#034;yyyy-MM-dd&#034;)).arg(t.toString(&#034;hh:mm:ss&#034;)).arg(obj).<br \/>\n            arg(QString::number(Index)).arg(dat);<\/p>\n<p>    return result;<br \/>\n}<br \/>\nWinTwo::~WinTwo()<br \/>\n{<br \/>\n}<\/p>\n<p>\u4e94\u3001\u6bcf\u65e5\u4e00\u9898\u5185\u5bb9\u4ee5Tipinfo[0..n].txt\u547d\u540d\u7684\u6587\u4ef6\u653e\u5728\u7f16\u8bd1\u76ee\u5f55\u4e0b\u7684TipFiles\u76ee\u5f55\u4e0b\u3002<\/p>\n<p style=\"text-align:center\"><img decoding=\"async\" alt=\"\" src=\"https:\/\/www.wsisp.com\/helps\/wp-content\/uploads\/2026\/01\/20260122122429-697216fd0c835.png\" \/><\/p>\n<p style=\"text-align:center\"><img decoding=\"async\" alt=\"\" src=\"https:\/\/www.wsisp.com\/helps\/wp-content\/uploads\/2026\/01\/20260122122429-697216fd2721e.png\" \/><\/p>\n<p style=\"text-align:center\"><img decoding=\"async\" alt=\"\" src=\"https:\/\/www.wsisp.com\/helps\/wp-content\/uploads\/2026\/01\/20260122122429-697216fd39ee0.png\" \/><\/p>\n<p style=\"text-align:center\">\u5b8c\u6210\u7684\u754c\u9762\u622a\u56fe(Deepin\u7cfb\u7edf)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4e00\u3001pro\u6587\u4ef6&#xff1a;W002.proQT        core guigreaterThan(QT_MAJOR_VERSION, 4): QT  widgetsCONFIG  c17# You can make your code fail to compile if it uses deprecated APIs.<br \/>\n# In order to do so, uncomment the following line.<br \/>\n#DEFINES  QT_DISABLE_DE<\/p>\n","protected":false},"author":2,"featured_media":64121,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[218,190],"topic":[],"class_list":["post-64124","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-server","tag-qt","tag-190"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.wsisp.com\/helps\/64124.html\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\" \/>\n<meta property=\"og:description\" content=\"\u4e00\u3001pro\u6587\u4ef6&#xff1a;W002.proQT    core guigreaterThan(QT_MAJOR_VERSION, 4): QT widgetsCONFIG c17# You can make your code fail to compile if it uses deprecated APIs. # In order to do so, uncomment the following line. #DEFINES QT_DISABLE_DE\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wsisp.com\/helps\/64124.html\" \/>\n<meta property=\"og:site_name\" content=\"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-22T12:24:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.wsisp.com\/helps\/wp-content\/uploads\/2026\/01\/20260122122429-697216fd0c835.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/64124.html\",\"url\":\"https:\/\/www.wsisp.com\/helps\/64124.html\",\"name\":\"QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\",\"isPartOf\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/#website\"},\"datePublished\":\"2026-01-22T12:24:30+00:00\",\"dateModified\":\"2026-01-22T12:24:30+00:00\",\"author\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.wsisp.com\/helps\/64124.html#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.wsisp.com\/helps\/64124.html\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/64124.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.wsisp.com\/helps\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#website\",\"url\":\"https:\/\/www.wsisp.com\/helps\/\",\"name\":\"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3\",\"description\":\"\u9999\u6e2f\u670d\u52a1\u5668_\u9999\u6e2f\u4e91\u670d\u52a1\u5668\u8d44\u8baf_\u670d\u52a1\u5668\u5e2e\u52a9\u6587\u6863_\u670d\u52a1\u5668\u6559\u7a0b\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.wsisp.com\/helps\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery\",\"contentUrl\":\"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/wp.wsisp.com\"],\"url\":\"https:\/\/www.wsisp.com\/helps\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.wsisp.com\/helps\/64124.html","og_locale":"zh_CN","og_type":"article","og_title":"QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","og_description":"\u4e00\u3001pro\u6587\u4ef6&#xff1a;W002.proQT    core guigreaterThan(QT_MAJOR_VERSION, 4): QT widgetsCONFIG c17# You can make your code fail to compile if it uses deprecated APIs. # In order to do so, uncomment the following line. #DEFINES QT_DISABLE_DE","og_url":"https:\/\/www.wsisp.com\/helps\/64124.html","og_site_name":"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","article_published_time":"2026-01-22T12:24:30+00:00","og_image":[{"url":"https:\/\/www.wsisp.com\/helps\/wp-content\/uploads\/2026\/01\/20260122122429-697216fd0c835.png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"admin","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"3 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.wsisp.com\/helps\/64124.html","url":"https:\/\/www.wsisp.com\/helps\/64124.html","name":"QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801 - \u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","isPartOf":{"@id":"https:\/\/www.wsisp.com\/helps\/#website"},"datePublished":"2026-01-22T12:24:30+00:00","dateModified":"2026-01-22T12:24:30+00:00","author":{"@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41"},"breadcrumb":{"@id":"https:\/\/www.wsisp.com\/helps\/64124.html#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wsisp.com\/helps\/64124.html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.wsisp.com\/helps\/64124.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.wsisp.com\/helps"},{"@type":"ListItem","position":2,"name":"QT\u65b0\u624b\u65e5\u8bb0025 - W002\u7a0b\u5e8f\u4ee3\u7801"}]},{"@type":"WebSite","@id":"https:\/\/www.wsisp.com\/helps\/#website","url":"https:\/\/www.wsisp.com\/helps\/","name":"\u7f51\u7855\u4e92\u8054\u5e2e\u52a9\u4e2d\u5fc3","description":"\u9999\u6e2f\u670d\u52a1\u5668_\u9999\u6e2f\u4e91\u670d\u52a1\u5668\u8d44\u8baf_\u670d\u52a1\u5668\u5e2e\u52a9\u6587\u6863_\u670d\u52a1\u5668\u6559\u7a0b","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wsisp.com\/helps\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":"Person","@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/358e386c577a3ab51c4493330a20ad41","name":"admin","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.wsisp.com\/helps\/#\/schema\/person\/image\/","url":"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery","contentUrl":"https:\/\/gravatar.wp-china-yes.net\/avatar\/?s=96&d=mystery","caption":"admin"},"sameAs":["http:\/\/wp.wsisp.com"],"url":"https:\/\/www.wsisp.com\/helps\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts\/64124","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/comments?post=64124"}],"version-history":[{"count":0,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/posts\/64124\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/media\/64121"}],"wp:attachment":[{"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/media?parent=64124"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/categories?post=64124"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/tags?post=64124"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.wsisp.com\/helps\/wp-json\/wp\/v2\/topic?post=64124"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}