aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/orphaned/mdn/structures
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-16 16:27:00 -0400
committerGitHub <noreply@github.com>2021-07-17 04:27:00 +0800
commitb9afb23d12dcae1e09f8d04c72143c5ddaa34aea (patch)
treef6c20844119bcaf0131ad4a037e0245577927f2c /files/zh-cn/orphaned/mdn/structures
parent1aa671566c3a990ec2df9a46137471d624b6f7ff (diff)
downloadtranslated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.tar.gz
translated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.tar.bz2
translated-content-b9afb23d12dcae1e09f8d04c72143c5ddaa34aea.zip
delete conflicting/orphaned docs (zh-CN) (#1412)
* delete conflicting docs (zh-CN) * and redirects * do orphaned as well * fix * remove more orphans * revert orphaned docs that can identify origin * move orphaned docs to current loc * adjust slug path * fix redirect change from rebase Co-authored-by: Irvin <irvinfly@gmail.com>
Diffstat (limited to 'files/zh-cn/orphaned/mdn/structures')
-rw-r--r--files/zh-cn/orphaned/mdn/structures/live_samples/simple_live_sample_demo/index.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/files/zh-cn/orphaned/mdn/structures/live_samples/simple_live_sample_demo/index.html b/files/zh-cn/orphaned/mdn/structures/live_samples/simple_live_sample_demo/index.html
deleted file mode 100644
index 649d469f44..0000000000
--- a/files/zh-cn/orphaned/mdn/structures/live_samples/simple_live_sample_demo/index.html
+++ /dev/null
@@ -1,32 +0,0 @@
----
-title: A simple demo of a live code sample
-slug: orphaned/MDN/Structures/Live_samples/Simple_live_sample_demo
-translation_of: MDN/Structures/Live_samples/Simple_live_sample_demo
-original_slug: MDN/Structures/Live_samples/Simple_live_sample_demo
----
-<div>{{MDNSidebar}}</div><h2 id="The_example">The_example</h2>
-
-<p id="Simple_example_of_a_live_demo">This is a very simple example showing you how to do a live demo in MDN. For more information, see <a href="/en-US/docs/MDN/Contribute/Structures/Live_samples">Live samples</a>.</p>
-
-<pre class="brush: html notranslate">&lt;form&gt;
- &lt;label&gt;Try me&lt;input type="text" name="name"&gt;&lt;/label&gt;
- &lt;input type="submit" value="go"&gt;
-&lt;/form&gt;</pre>
-
-<pre class="brush: css notranslate">form {
- border-radius: 10px;
- background: powderblue;
-}</pre>
-
-<pre class="brush: js notranslate">var f = document.querySelector('form');
-
-f.addEventListener('submit', function(ev) {
- ev.preventDefault();
- document.querySelectorAll('input')[1].value = 'sending';
-}, false);</pre>
-
-<p>{{ EmbedLiveSample('The_example', '', '', '') }}</p>
-
-<p> </p>
-
-<p> </p>