metainspector 1.9.11 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -18,30 +18,36 @@ This gem is tested on Ruby versions 1.8.7, 1.9.2 and 1.9.3.
18
18
 
19
19
  Initialize a scraper instance for an URL, like this:
20
20
 
21
- page = MetaInspector::Scraper.new('http://w3clove.com')
21
+ page = MetaInspector::Scraper.new('http://markupvalidator.com')
22
22
 
23
23
  or, for short, a convenience alias is also available:
24
24
 
25
- page = MetaInspector.new('http://w3clove.com')
25
+ page = MetaInspector.new('http://markupvalidator.com')
26
26
 
27
27
  If you don't include the scheme on the URL, http:// will be used
28
28
  by defaul:
29
29
 
30
- page = MetaInspector.new('w3clove.com')
30
+ page = MetaInspector.new('markupvalidator.com')
31
31
 
32
32
  By default, MetaInspector times out after 20 seconds of waiting for a page to respond.
33
33
  You can set a different timeout with a second parameter, like this:
34
34
 
35
- page = MetaInspector.new('w3clove.com', 5) # this would wait just 5 seconds to timeout
35
+ page = MetaInspector.new('markupvalidator.com', :timeout => 5) # this would wait just 5 seconds to timeout
36
+
37
+ Metainspector will try to parse all URLs by default. If you want to parse only those URLs that have text/html as content-type you can specify it like this:
38
+
39
+ page = MetaInspector.new('markupvalidator.com', :html_content_only => true)
36
40
 
37
41
  Then you can see the scraped data like this:
38
42
 
39
43
  page.url # URL of the page
40
44
  page.scheme # Scheme of the page (http, https)
41
- page.host # Hostname of the page (like, w3clove.com, without the scheme)
42
- page.root_url # Root url (scheme + host, like http://w3clove.com/)
45
+ page.host # Hostname of the page (like, markupvalidator.com, without the scheme)
46
+ page.root_url # Root url (scheme + host, like http://markupvalidator.com/)
43
47
  page.title # title of the page, as string
44
48
  page.links # array of strings, with every link found on the page as an absolute URL
49
+ page.internal_links # array of strings, with every internal link found on the page as an absolute URL
50
+ page.extrenal_links # array of strings, with every external link found on the page as an absolute URL
45
51
  page.meta_description # meta description, as string
46
52
  page.description # returns the meta description, or the first long paragraph if no meta description is found
47
53
  page.meta_keywords # meta keywords, as string
@@ -51,6 +57,7 @@ Then you can see the scraped data like this:
51
57
  page.meta_og_title # opengraph title
52
58
  page.meta_og_image # opengraph image
53
59
  page.charset # UTF-8
60
+ page.content_type # content-type returned by the server when the url was requested
54
61
 
55
62
  MetaInspector uses dynamic methods for meta_tag discovery, so all these will work, and will be converted to a search of a meta tag by the corresponding name, and return its content attribute
56
63
 
@@ -68,7 +75,7 @@ Please notice that MetaInspector is case sensitive, so page.meta_Content_Type is
68
75
 
69
76
  You can also access most of the scraped data as a hash:
70
77
 
71
- page.to_hash # { "url"=>"http://w3clove.com", "title" => "W3CLove :: site-wide markup validation tool", ... }
78
+ page.to_hash # { "url"=>"http://markupvalidator.com", "title" => "MarkupValidator :: site-wide markup validation tool", ... }
72
79
 
73
80
  The full scraped document if accessible from:
74
81
 
@@ -92,11 +99,11 @@ You can find some sample scripts on the samples folder, including a basic scrapi
92
99
  >> require 'metainspector'
93
100
  => true
94
101
 
95
- >> page = MetaInspector.new('http://w3clove.com')
96
- => #<MetaInspector:0x11330c0 @url="http://w3clove.com">
102
+ >> page = MetaInspector.new('http://markupvalidator.com')
103
+ => #<MetaInspector:0x11330c0 @url="http://markupvalidator.com">
97
104
 
98
105
  >> page.title
99
- => "W3CLove :: site-wide markup validation tool"
106
+ => "MarkupValidator :: site-wide markup validation tool"
100
107
 
101
108
  >> page.meta_description
102
109
  => "Site-wide markup validation tool. Validate the markup of your whole site with just one click."
@@ -118,19 +125,16 @@ You can find some sample scripts on the samples folder, including a basic scrapi
118
125
 
119
126
  = ZOMG Fork! Thank you!
120
127
 
121
- You're welcome to fork this project and send pull requests. I want to thank specially:
128
+ You're welcome to fork this project and send pull requests. Just remember to include specs.
129
+
130
+ Thanks to all the contributors:
122
131
 
123
- * Ryan Romanchuk https://github.com/rromanchuk
124
- * Edmund Haselwanter https://github.com/ehaselwanter
125
- * Jonathan Hernández https://github.com/ionmx
126
- * Oriol Gual https://github.com/oriolgual
132
+ https://github.com/jaimeiniesta/metainspector/graphs/contributors
127
133
 
128
134
  = To Do
129
135
 
130
136
  * Get page.base_dir from the URL
131
- * Distinguish between external and internal links, returning page.links for all of them as found, page.external_links and page.internal_links converted to absolute URLs
132
137
  * If keywords seem to be separated by blank spaces, replace them with commas
133
- * Check content type, process only HTML pages, don't try to scrape TAR files like http://ftp.ruby-lang.org/pub/ruby/ruby-1.9.1-p129.tar.bz2 or video files like http://isabel.dit.upm.es/component/option,com_docman/task,doc_download/gid,831/Itemid,74/
134
138
  * Autodiscover all available meta tags
135
139
 
136
- Copyright (c) 2009-2011 Jaime Iniesta, released under the MIT license
140
+ Copyright (c) 2009-2012 Jaime Iniesta, released under the MIT license
@@ -6,7 +6,7 @@ module MetaInspector
6
6
  extend self
7
7
 
8
8
  # Sugar method to be able to create a scraper in a shorter way
9
- def new(url, timeout = 20)
10
- Scraper.new(url, timeout)
9
+ def new(url, options = {})
10
+ Scraper.new(url, options)
11
11
  end
12
12
  end
@@ -8,18 +8,22 @@ require 'timeout'
8
8
  # MetaInspector provides an easy way to scrape web pages and get its elements
9
9
  module MetaInspector
10
10
  class Scraper
11
- attr_reader :url, :scheme, :host, :root_url, :errors
11
+ attr_reader :url, :scheme, :host, :root_url, :errors, :content_type
12
+
12
13
  # Initializes a new instance of MetaInspector, setting the URL to the one given
13
14
  # If no scheme given, set it to http:// by default
14
-
15
- def initialize(url, timeout = 20)
15
+ # Options:
16
+ # => timeout: defaults to 20 seconds
17
+ # => html_content_type_only: if an exception should be raised if request content-type is not text/html. Defaults to false
18
+ def initialize(url, options = {})
16
19
  @url = URI.parse(url).scheme.nil? ? 'http://' + url : url
17
20
  @scheme = URI.parse(@url).scheme
18
21
  @host = URI.parse(@url).host
19
22
  @root_url = "#{@scheme}://#{@host}/"
20
- @timeout = timeout
23
+ @timeout = options[:timeout] || 20
21
24
  @data = Hashie::Rash.new('url' => @url)
22
25
  @errors = []
26
+ @html_content_only = options[:html_content_only] || false
23
27
  end
24
28
 
25
29
  # Returns the parsed document title, from the content of the <title> tag.
@@ -39,6 +43,16 @@ module MetaInspector
39
43
  @data.links ||= parsed_links.map { |l| absolutify_url(unrelativize_url(l)) }
40
44
  end
41
45
 
46
+ # Internal links found on the page, as absolute URLs
47
+ def internal_links
48
+ @data.internal_links ||= links.select {|link| URI.parse(link).host == @host }
49
+ end
50
+
51
+ # External links found on the page, as absolute URLs
52
+ def external_links
53
+ @data.external_links ||= links.select {|link| URI.parse(link).host != @host }
54
+ end
55
+
42
56
  def absolute_links
43
57
  warn "absolute_links is deprecated since 1.9.4 and will be removed, use links instead"
44
58
  links
@@ -80,7 +94,7 @@ module MetaInspector
80
94
  # Returns all parsed data as a nested Hash
81
95
  def to_hash
82
96
  # TODO: find a better option to populate the data to the Hash
83
- image;images;feed;links;charset;title;meta_keywords
97
+ image;images;feed;links;charset;title;meta_keywords;internal_links;external_links
84
98
  @data.to_hash
85
99
  end
86
100
 
@@ -98,7 +112,16 @@ module MetaInspector
98
112
 
99
113
  # Returns the original, unparsed document
100
114
  def document
101
- @document ||= Timeout::timeout(@timeout) { open(@url).read }
115
+ @document ||= Timeout::timeout(@timeout) {
116
+ req = open(@url)
117
+ @content_type = @data.content_type = req.content_type
118
+
119
+ if @html_content_only && @content_type != "text/html"
120
+ raise "The url provided contains #{@content_type} content instead of text/html content"
121
+ end
122
+
123
+ req.read
124
+ }
102
125
 
103
126
  rescue SocketError
104
127
  add_fatal_error 'Socket error: The url provided does not exist or is temporarily unavailable'
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  module MetaInspector
4
- VERSION = "1.9.11"
4
+ VERSION = "1.10.0"
5
5
  end
@@ -7,7 +7,7 @@ Status: 200 OK
7
7
  X-Ua-Compatible: IE=Edge,chrome=1
8
8
  Etag: "c4f3d4aaf12acce6a909714618e08934"
9
9
  Cache-Control: max-age=0, private, must-revalidate
10
- Set-Cookie: _w3clovesite_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRkkiJTJiMWU0NzVkNjJjNDliMDRlZGI3MjI5OTVlN2U4MjU5BjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMTlWUmVSMEVlTWNuV0t4cTFuNHUvQVozZCttMjhxRTEvWFhYYW5hOXRFdUk9BjsARg%3D%3D--7e9d3e900c9531363297f469f8baa3e3ed31336a; path=/; HttpOnly
10
+ Set-Cookie: _markupvalidator_site_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRkkiJTJiMWU0NzVkNjJjNDliMDRlZGI3MjI5OTVlN2U4MjU5BjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMTlWUmVSMEVlTWNuV0t4cTFuNHUvQVozZCttMjhxRTEvWFhYYW5hOXRFdUk9BjsARg%3D%3D--7e9d3e900c9531363297f469f8baa3e3ed31336a; path=/; HttpOnly
11
11
  X-Request-Id: 33ca78a4044d244e673d273a59fa4ebc
12
12
  X-Runtime: 0.017688
13
13
  X-Rack-Cache: miss
@@ -22,7 +22,7 @@ Via: 1.1 varnish
22
22
  <head><script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script>
23
23
  <meta charset="UTF-8" />
24
24
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
25
- <title>Whole site HTML validator | W3CLove</title>
25
+ <title>Whole site HTML validator | MarkupValidator</title>
26
26
  <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
27
27
  <meta name="description" content="Site-wide markup validation tool. Validate the markup of your whole site with just one click." />
28
28
  <meta name="keywords" content="html, markup, validation, validator, tool, w3c, development, standards, free" />
@@ -34,7 +34,7 @@ Via: 1.1 varnish
34
34
  <script src="/assets/application-4e8aa1a929a0aeab6bdf339edecbeaa6.js" type="text/javascript"></script>
35
35
  <script src="/assets/pages-7270767b2a9e9fff880aa5de378ca791.js" type="text/javascript"></script>
36
36
  <script src="https://apis.google.com/js/plusone.js" type="text/javascript"></script>
37
-
37
+
38
38
  <script type="text/javascript">
39
39
 
40
40
  var _gaq = _gaq || [];
@@ -51,7 +51,7 @@ Via: 1.1 varnish
51
51
  </head>
52
52
 
53
53
  <body>
54
-
54
+
55
55
  <div id="flash_message"><div><span id="flash_message_text"></span><a class="close-message" href="#" onclick="closeMsgBar();">X</a></div></div>
56
56
 
57
57
 
@@ -60,7 +60,7 @@ Via: 1.1 varnish
60
60
  <div class="content">
61
61
  <header>
62
62
  <div class="header">
63
- <h1><a href="/" title="W3CLove">W3CLove</a></h1>
63
+ <h1><a href="/" title="MarkupValidator">MarkupValidator</a></h1>
64
64
  <nav>
65
65
  <a href="#" class="nav_button"></a>
66
66
  <ul class="nav">
@@ -98,35 +98,35 @@ Via: 1.1 varnish
98
98
 
99
99
  <div class="content">
100
100
 
101
- <h4 id="what_is_w3clove">What is W3CLove?</h4>
101
+ <h4 id="what_is_markupvalidator">What is MarkupValidator?</h4>
102
102
  <p>
103
- W3CLove is a site-wide markup validation tool. It allows you to check the validity of the markup of several pages
103
+ MarkupValidator is a site-wide markup validation tool. It allows you to check the validity of the markup of several pages
104
104
  from your website, and gives you a summary of the most common errors and warnings, with a single click.
105
105
  </p>
106
106
 
107
107
  <h4 id="why_not_just_use_the_official_w3c_validator">Why not just use the official W3C validator?</h4>
108
108
  <p>
109
109
  The <a href="http://validator.w3.org">official W3C validator</a> does not yet provide a way to submit several URLs at once. So, if you want to check your whole
110
- website, you need to submit each of your URLs individually, which is a slow process. W3CLove provides a simpler, faster way to
110
+ website, you need to submit each of your URLs individually, which is a slow process. MarkupValidator provides a simpler, faster way to
111
111
  submit several pages at once.
112
112
  </p>
113
113
 
114
114
  <h4 id="how_can_i_submit_my_site_for_validation">How can I submit a site for validation?</h4>
115
115
  <p>
116
- To submit a site, just enter its URL on the <a href="/">front page</a>, and click the "Validate" button. The W3CLove spider will crawl the site
116
+ To submit a site, just enter its URL on the <a href="/">front page</a>, and click the "Validate" button. The MarkupValidator spider will crawl the site
117
117
  in search for internal links, validate each of them, and then compile all errors and warnings in one summary.
118
118
  </p>
119
119
 
120
120
  <h4 id="how_can_i_specify_the_exact_urls_i_want_to_validate">How can I specify the exact URLs I want to validate?</h4>
121
121
  <p>
122
- The W3CLove spider will crawl the provided URL in search for internal links, but you can also provide an <a href="http://www.sitemaps.org/">XML sitemap</a> with the exact URLs
122
+ The MarkupValidator spider will crawl the provided URL in search for internal links, but you can also provide an <a href="http://www.sitemaps.org/">XML sitemap</a> with the exact URLs
123
123
  you need to validate.
124
124
  </p>
125
125
 
126
126
  <h4 id="is_there_a_limit_on_the_number_of_urls">Is there a limit on the number of URLs to validate?</h4>
127
127
  <p>
128
128
  Yes, there is a limit of 250 URLs per each sitemap submitted. This should be enough for most sites to get a good idea of the
129
- validation status of the site, and saves processing time for both W3CLove and the W3C validator.
129
+ validation status of the site, and saves processing time for both MarkupValidator and the W3C validator.
130
130
  </p>
131
131
 
132
132
  <h4 id="how_can_i_resubmit_a_site">How can I resubmit a site?</h4>
@@ -136,12 +136,12 @@ Via: 1.1 varnish
136
136
 
137
137
  <h4 id="can_i_store_my_sitemaps_list">Can I store my sitemaps list?</h4>
138
138
  <p>
139
- Yes, W3CLove lets you store for free a list of the sitemaps you're interested in validating. Just sign in with your Twitter, Facebook or Google account and every sitemap you validate will appear on your sitemaps list.
139
+ Yes, MarkupValidator lets you store for free a list of the sitemaps you're interested in validating. Just sign in with your Twitter, Facebook or Google account and every sitemap you validate will appear on your sitemaps list.
140
140
  </p>
141
141
 
142
142
  <h4 id="how_do_credits_work">How do credits work?</h4>
143
143
  <p>
144
- When you sign up for the first time at W3CLove, you're given 100 initial credits so you can try the service for free.
144
+ When you sign up for the first time at MarkupValidator, you're given 100 initial credits so you can try the service for free.
145
145
  </p>
146
146
  <p>
147
147
  For every single web page validation that you make using our service, you're charged 1 credit. So, for example, if you start with 100 credits and you validate a site that has 30 web pages, you end up with 70 credits.
@@ -163,7 +163,7 @@ Via: 1.1 varnish
163
163
 
164
164
  <h4 id="how_can_i_sign_in_with_another_account">I've signed in from one account, how can I sign in with a different one?</h4>
165
165
  <p>
166
- For your convenience, you're first shown 3 ways to sign in: Twitter, Facebook and Google. When you use one of those, W3CLove will remember your preference and offer just this one.
166
+ For your convenience, you're first shown 3 ways to sign in: Twitter, Facebook and Google. When you use one of those, MarkupValidator will remember your preference and offer just this one.
167
167
  </p>
168
168
  <p>
169
169
  If you'd like to change this preference, just sign in again with your preferred account:<br/>
@@ -172,7 +172,7 @@ Via: 1.1 varnish
172
172
 
173
173
  <h4 id="who_is_behind_all_this">Who is behind all this?</h4>
174
174
  <p>
175
- W3CLove is a personal project maintained by <a href="http://jaimeiniesta.com/">Jaime Iniesta</a>, an independent web developer who loves working with Ruby on Rails. That's me. :)
175
+ MarkupValidator is a personal project maintained by <a href="http://jaimeiniesta.com/">Jaime Iniesta</a>, an independent web developer who loves working with Ruby on Rails. That's me. :)
176
176
  </p>
177
177
 
178
178
  <h4 id="how_did_this_project_start">How did this project start?</h4>
@@ -180,13 +180,13 @@ Via: 1.1 varnish
180
180
  During March 2011 I took the Ruby Core Skills course at the <a href="http://mendicantuniversity.org/">Mendicant University</a>, an intense three week course that takes you through several important topic areas every Ruby developer should be comfortable on. You can <a href="http://jaimeiniesta.posterous.com/rbmu-a-better-way-to-learn-ruby">read more</a> about it at my blog.
181
181
  </p>
182
182
  <p>
183
- With the help of <a href="http://majesticseacreature.com/">Gregory Brown</a> and the rest of the <a href="http://school.mendicantuniversity.org/alumni/2011">Mendicant University Alumni</a>, I built the <a href="https://github.com/jaimeiniesta/w3clove">w3clove</a> gem that allows you to do site-wide markup validation from the command line.
183
+ With the help of <a href="http://majesticseacreature.com/">Gregory Brown</a> and the rest of the <a href="http://school.mendicantuniversity.org/alumni/2011">Mendicant University Alumni</a>, I built the <a href="https://github.com/jaimeiniesta/site_validator">site_validator</a> gem that allows you to do site-wide markup validation from the command line.
184
184
  </p>
185
185
  <p>
186
- Afterwards, I built this <a href="http://w3clove.com">W3CLove.com</a> site to make it easier for everyone to do site-wide markup validation, with a nicer HTML interface, storing the results for later, rechecking, etc.
186
+ Afterwards, I built this <a href="http://markupvalidator.com">markupvalidator.com</a> site to make it easier for everyone to do site-wide markup validation, with a nicer HTML interface, storing the results for later, rechecking, etc.
187
187
  </p>
188
188
  <p>
189
- I want to express my gratitude to all the Mendicant University community, all of them are still helping me making W3CLove a better tool for everyone. Thank you!
189
+ I want to express my gratitude to all the Mendicant University community, all of them are still helping me making MarkupValidator a better tool for everyone. Thank you!
190
190
  </p>
191
191
 
192
192
  <h4 id="is_this_free">Is this free?</h4>
@@ -199,7 +199,7 @@ Via: 1.1 varnish
199
199
  Yes! There's a free, standalone version that you can install on your computer. It's packed as a Ruby gem and it's open source, so you can examine the code and contribute to it if you wish.
200
200
  </p>
201
201
  <p>
202
- You can find the <a href="https://github.com/jaimeiniesta/w3clove">w3clove gem at Github</a>.
202
+ You can find the <a href="https://github.com/jaimeiniesta/site_validator">site_validator gem at Github</a>.
203
203
  </p>
204
204
 
205
205
  <h4 id="is_there_an_api">Is there an API?</h4>
@@ -217,7 +217,7 @@ Via: 1.1 varnish
217
217
  <p>
218
218
  <!-- Begin MailChimp Signup Form -->
219
219
  <div id="mc_embed_signup">
220
- <form action="http://w3clove.us4.list-manage.com/subscribe/post?u=6af3ab69c286561d0f0f25671&amp;id=04a0dab609" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate shadowins">
220
+ <form action="http://markupvalidator.us4.list-manage.com/subscribe/post?u=6af3ab69c286561d0f0f25671&amp;id=04a0dab609" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate shadowins">
221
221
  <label for="mce-EMAIL">Subscribe to our newsletter:</label>
222
222
  <input type="email" value="your email" name="EMAIL" class="email" id="mce-EMAIL" placeholder="your email" onfocus="this.value='';" required>
223
223
  <div class="clear"><input type="submit" value="♥" name="subscribe" id="mc-embedded-subscribe" class="button btn"></div>
@@ -226,12 +226,12 @@ Via: 1.1 varnish
226
226
  <!--End mc_embed_signup-->
227
227
 
228
228
  <ul class="social_share">
229
- <li class="twitter_follow"><a href="https://twitter.com/w3clove" class="twitter-follow-button" data-button="grey" data-text-color="#FFFFFF" data-link-color="#999999" data-show-count="false">Follow</a></li>
230
- <li class="tweets_count"><a href="http://twitter.com/share" style="display:block;" class="twitter-share-button" data-count="horizontal" data-via="w3clove" data-lang="en">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></li>
229
+ <li class="twitter_follow"><a href="https://twitter.com/markupvalidator" class="twitter-follow-button" data-button="grey" data-text-color="#FFFFFF" data-link-color="#999999" data-show-count="false">Follow</a></li>
230
+ <li class="tweets_count"><a href="http://twitter.com/share" style="display:block;" class="twitter-share-button" data-count="horizontal" data-via="markupvalidator" data-lang="en">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></li>
231
231
  <li class="gplus_count"><div class="g-plusone" data-size="medium" data-count="true"></div></li>
232
232
  </ul>
233
233
  </p>
234
- <p class="clearb"><strong>W3CLove</strong> lets you <strong>validate entire sites</strong> with one click. This is an independent project, not associated with the W3C. By making use of this website you agree to the <a href="/terms_of_service">Terms of service</a>.<br /><br />Follow us on <a href="http://twitter.com/W3CLove">Twitter</a> and <a href="http://us4.campaign-archive1.com/home/?u=6af3ab69c286561d0f0f25671&id=04a0dab609">subscribe to our monthly newsletter</a>.</p>
234
+ <p class="clearb"><strong>MarkupValidator</strong> lets you <strong>validate entire sites</strong> with one click. This is an independent project, not associated with the W3C. By making use of this website you agree to the <a href="/terms_of_service">Terms of service</a>.<br /><br />Follow us on <a href="http://twitter.com/MarkupValidator">Twitter</a> and <a href="http://us4.campaign-archive1.com/home/?u=6af3ab69c286561d0f0f25671&id=04a0dab609">subscribe to our monthly newsletter</a>.</p>
235
235
  </footer>
236
236
  </div>
237
237
  </div>
@@ -1,159 +1,159 @@
1
- HTTP/1.1 200 OK
2
- Date: Mon, 23 Jul 2012 19:35:07 GMT
3
- Status: 200 OK
4
- Content-Length: 176377
5
- Expires: Tue, 31 Mar 1981 05:00:00 GMT
6
- X-Frame-Options: SAMEORIGIN
7
- X-Transaction: a63febd24c984977
8
- X-Runtime: 0.90010
9
- Strict-Transport-Security: max-age=631138519
10
- Last-Modified: Mon, 23 Jul 2012 19:35:06 GMT
11
- Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0
12
- X-MID: edcd5fa94020af3680ab0ebd47958eb8d9392c3d
13
- Pragma: no-cache
14
- ETag: "f7cea221b15a856077e20263b7e580e8"
15
- Content-Type: text/html; charset=utf-8
16
- Set-Cookie: k=10.36.32.129.1343072106474113; path=/; expires=Mon, 30-Jul-12 19:35:06 GMT; domain=.twitter.com
17
- Set-Cookie: guest_id=v1%3A134307210648584308; domain=.twitter.com; path=/; expires=Thu, 24-Jul-2014 07:35:06 GMT
18
- Set-Cookie: fd=0120220201000000100-e417; path=/; expires=Mon, 23-Jul-2012 19:50:07 GMT
19
- Set-Cookie: _twitter_sess=BAh7CiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCPb3VbU4AToMY3NyZl9p%250AZCIlOWU3YTMyNTkxZThhYzViZjNmOGY2ZTk2ZGI0YmIyOTE6DnJldHVybl90%250AbyIgaHR0cHM6Ly90d2l0dGVyLmNvbS93M2Nsb3ZlOgdpZCIlNTZkNTI4MjUw%250AOTJiNDQ2OTg5Y2I4MmFjYzdjZTQ5OWM%253D--c215baa469254d27524c4dba2d9db55f5c38a429; domain=.twitter.com; path=/; HttpOnly
20
- X-XSS-Protection: 1; mode=block
21
- Vary: Accept-Encoding
22
- Server: tfe
23
-
1
+ HTTP/1.1 200 OK
2
+ Date: Mon, 23 Jul 2012 19:35:07 GMT
3
+ Status: 200 OK
4
+ Content-Length: 176377
5
+ Expires: Tue, 31 Mar 1981 05:00:00 GMT
6
+ X-Frame-Options: SAMEORIGIN
7
+ X-Transaction: a63febd24c984977
8
+ X-Runtime: 0.90010
9
+ Strict-Transport-Security: max-age=631138519
10
+ Last-Modified: Mon, 23 Jul 2012 19:35:06 GMT
11
+ Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0
12
+ X-MID: edcd5fa94020af3680ab0ebd47958eb8d9392c3d
13
+ Pragma: no-cache
14
+ ETag: "f7cea221b15a856077e20263b7e580e8"
15
+ Content-Type: text/html; charset=utf-8
16
+ Set-Cookie: k=10.36.32.129.1343072106474113; path=/; expires=Mon, 30-Jul-12 19:35:06 GMT; domain=.twitter.com
17
+ Set-Cookie: guest_id=v1%3A134307210648584308; domain=.twitter.com; path=/; expires=Thu, 24-Jul-2014 07:35:06 GMT
18
+ Set-Cookie: fd=0120220201000000100-e417; path=/; expires=Mon, 23-Jul-2012 19:50:07 GMT
19
+ Set-Cookie: _twitter_sess=BAh7CiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCPb3VbU4AToMY3NyZl9p%250AZCIlOWU3YTMyNTkxZThhYzViZjNmOGY2ZTk2ZGI0YmIyOTE6DnJldHVybl90%250AbyIgaHR0cHM6Ly90d2l0dGVyLmNvbS93M2Nsb3ZlOgdpZCIlNTZkNTI4MjUw%250AOTJiNDQ2OTg5Y2I4MmFjYzdjZTQ5OWM%253D--c215baa469254d27524c4dba2d9db55f5c38a429; domain=.twitter.com; path=/; HttpOnly
20
+ X-XSS-Protection: 1; mode=block
21
+ Vary: Accept-Encoding
22
+ Server: tfe
23
+
24
24
  <!DOCTYPE html>
25
25
  <html lang="es">
26
26
  <head>
27
27
  <meta charset="utf-8">
28
-
28
+
29
29
  <script>document.domain='twitter.com'</script>
30
30
 
31
- <title>W3CLove App (W3CLove) en Twitter</title>
31
+ <title>MarkupValidator App (MarkupValidator) en Twitter</title>
32
32
 
33
33
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
34
-
34
+
35
35
  <meta name="description" content="Conecta instantáneamente con lo que es más importante para ti. Sigue a tus amigos, expertos, celebridades favoritas, y noticias de última hora.">
36
-
37
-
36
+
37
+
38
38
  <link href="/favicons/favicon.ico" rel="shortcut icon" type="image/x-icon">
39
-
39
+
40
40
  <link rel="stylesheet" href="https://twimg0-a.akamaihd.net/a/1342841381/t1/css/t1_core_logged_out.bundle.css" type="text/css" media="screen">
41
-
41
+
42
42
  <link rel="stylesheet" href="https://twimg0-a.akamaihd.net/a/1342841381/t1/css/t1_more.bundle.css" type="text/css" media="screen">
43
-
44
-
45
- <style id="user-style-W3CLove" class="js-user-style">
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
43
+
44
+
45
+ <style id="user-style-MarkupValidator" class="js-user-style">
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
55
  a,
56
-
57
-
58
-
56
+
57
+
58
+
59
59
  .btn-link,
60
-
61
-
62
-
63
-
64
-
65
-
66
-
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
67
  .pretty-link:hover s,
68
68
  .pretty-link:hover b,
69
69
  /* Account Group */
70
70
  .metadata a:hover,
71
-
71
+
72
72
  .account-group:hover .fullname,
73
-
73
+
74
74
  .stats a:hover,
75
75
  .stats a:hover strong,
76
-
76
+
77
77
  .profile-modal-header .fullname a:hover,
78
78
  .profile-modal-header .username a:hover,
79
-
79
+
80
80
  .story-article:hover .metadata,
81
-
81
+
82
82
  .find-friends-sources li:hover .source,
83
-
84
-
85
-
86
-
87
-
83
+
84
+
85
+
86
+
87
+
88
88
  .stream-item a:hover .fullname,
89
-
89
+
90
90
  .stream-item .view-all-supplements:hover,
91
-
91
+
92
92
  .tweet .time a:hover,
93
93
  .tweet:hover .user-dropdown .mark-as-spam-text,
94
94
  .tweet-actions a,
95
95
  .tweet .details.with-icn b,
96
-
96
+
97
97
  .stream-item:hover .original-tweet .expand-action-wrapper,
98
98
  .opened-tweet.original-tweet .expand-action-wrapper,
99
-
99
+
100
100
  .stream-item:hover .original-tweet .details b,
101
101
  .stream-item.open .original-tweet .details b,
102
-
102
+
103
103
  .simple-tweet:hover .details b,
104
104
  .simple-tweet.open .details b,
105
105
  .simple-tweet:hover .details .expand-action-wrapper,
106
106
  .simple-tweet.open .details .collapse-action-wrapper,
107
107
  .simple-tweet:hover .details .simple-details-link,
108
-
108
+
109
109
  .client-and-actions a:hover,
110
-
110
+
111
111
  .dismiss-promoted:hover b,
112
-
112
+
113
113
  .tweet .context .pretty-link:hover s,
114
114
  .tweet .context .pretty-link:hover b,
115
-
115
+
116
116
  .list .username a:hover,
117
117
  .list-membership-container .create-a-list,
118
118
  .list-membership-container .create-a-list:hover,
119
-
120
-
121
-
119
+
120
+
121
+
122
122
  .story-header:hover .view-tweets,
123
123
  .card .list-details a:hover,
124
124
  .card .card-body:hover .attribution,
125
125
  .new-tweets-bar,
126
126
  .onebox .soccer ul.ticker a:hover,
127
-
128
-
129
-
127
+
128
+
129
+
130
130
  .discover-item-actions a,
131
-
132
-
133
-
131
+
132
+
133
+
134
134
  .remove-background-btn,
135
-
136
-
137
-
135
+
136
+
137
+
138
138
  .stream-item-activity-me .latest-tweet .tweet-row a:hover {
139
139
  color: #0084B4;
140
140
  }
141
-
142
-
143
-
144
-
145
-
146
-
141
+
142
+
143
+
144
+
145
+
146
+
147
147
  s,
148
148
  .pretty-link:hover s,
149
149
  .stream-item-activity-me .latest-tweet .tweet-row a:hover s {
150
150
  color: #66B5D2;
151
151
  }
152
-
153
-
154
-
155
-
156
-
152
+
153
+
154
+
155
+
156
+
157
157
  .tweet .sm-reply,
158
158
  .tweet .sm-rt,
159
159
  .tweet .sm-fav,
@@ -167,20 +167,20 @@ Server: tfe
167
167
  .tweet .sm-embed,
168
168
  .tweet .sm-summary,
169
169
  .tweet .sm-chat,
170
-
170
+
171
171
  .tweet .mark-as-spam-flag,
172
172
  .tweet .mark-as-spam-silhouette,
173
-
173
+
174
174
  .timelines-navigation .active .profile-nav-icon,
175
175
  .timelines-navigation .profile-nav-icon:hover,
176
-
176
+
177
177
  .sm-top-tweet,
178
-
179
-
178
+
179
+
180
180
  .discover-item .js-action-card-search:hover .sm-search {
181
181
  background-color: #0084B4;
182
182
  }
183
-
183
+
184
184
  body {
185
185
  background-position: left 40px;
186
186
  background-attachment: fixed;
@@ -189,33 +189,33 @@ Server: tfe
189
189
  background-color: #C0DEED;
190
190
  }
191
191
  </style>
192
-
193
- <style id="user-style-W3CLove-bg-img" class="js-user-style-bg-img">
194
- body.user-style-W3CLove {
192
+
193
+ <style id="user-style-MarkupValidator-bg-img" class="js-user-style-bg-img">
194
+ body.user-style-MarkupValidator {
195
195
  background-image: url(https://twimg0-a.akamaihd.net/images/themes/theme1/bg.png);
196
196
  }
197
197
  </style>
198
-
198
+
199
199
  <script>
200
-
200
+
201
201
  (function(){function a(){document.write="",window.top.location=window.self.location,setTimeout(function(){document.body.innerHTML=""},0),window.self.onload=function(a){document.body.innerHTML=""}}if(window.top!==window.self)try{window.top.location.host||a()}catch(b){a()}})();
202
202
  </script>
203
-
203
+
204
204
  <script>(function(){function f(a){a=a||window.event;if(!a)return;!a.target&&a.srcElement&&(a.target=a.srcElement);if(!j(a))return;if(!document.addEventListener){var b={};for(var c in a)b[c]=a[c];a=b}return a.preventDefault=a.stopPropagation=function(){},d.push(a),!1}function g($){i();for(var b=0,c;c=d[b];b++){var e=$(c.target);if(c.type=="click"&&c.target.tagName.toLowerCase()=="a"){var f=$.data(e.get(0),"events"),g=f&&f.click,j=!c.target.hostname.match(a)||!c.target.href.match(/#$/);if(!g&&j){window.location=c.target.href;continue}}e.trigger(c)}window.swiftActionQueue.wasFlushed=!0}function i(){e&&clearTimeout(e);for(var a=0;a<c.length;a++)document["on"+c[a]]=null}function j(c){var d=c.target.tagName.toLowerCase();if(d=="label")if(c.target.getAttribute("for")){var e=document.getElementById(c.target.getAttribute("for"));if(e.getAttribute("type")=="checkbox")return!1}else for(var f=0;f<c.target.childNodes.length;f++)if((c.target.childNodes[f].tagName||"").toLowerCase()=="input"&&c.target.childNodes[f].getAttribute("type")=="checkbox")return!1;if(d=="textarea"||d=="input"&&c.target.getAttribute("type")=="text")if(c.type.match(b))return!1;return c.metaKey?!1:c.clientX&&c.shiftKey&&d=="a"?!1:c.target&&c.target.hostname&&!c.target.hostname.match(a)?!1:!0}var a=/^([^\.]+\.)*twitter.com$/,b=/^key/,c=["click","keydown","keypress","keyup"],d=[],e=null;for(var k=0;k<c.length;k++)document["on"+c[k]]=f;setTimeout(i,1e4),window.swiftActionQueue={flush:g,wasFlushed:!1}})();</script> </head>
205
- <body class="t1 logged-out user-style-W3CLove western es"
205
+ <body class="t1 logged-out user-style-MarkupValidator western es"
206
206
  >
207
207
  <div id="doc" class="route-profile">
208
208
  <div class="push-loader" id="pushStateSpinner"></div>
209
-
209
+
210
210
  <div class="topbar js-topbar">
211
211
  <div id="banners" class="js-banners">
212
-
212
+
213
213
  </div>
214
214
  <div class="global-nav" data-section-term="top_nav">
215
215
  <div class="global-nav-inner">
216
216
  <div class="container">
217
-
218
-
217
+
218
+
219
219
  <ul class="nav js-global-actions">
220
220
  <li class="home" data-global-action="t1home">
221
221
  <a class="nav-logo-link" href="/" data-nav="front">
@@ -255,7 +255,7 @@ Server: tfe
255
255
  </label>
256
256
  <button type="submit" class="btn submit">Iniciar sesión</button>
257
257
  </fieldset>
258
-
258
+
259
259
  <input type="hidden" name="scribe_log">
260
260
  <input type="hidden" name="redirect_after_login" value="">
261
261
  <input type="hidden" value="fee7199505aff1976dbf75b780f4c04b3fd37937" name="authenticity_token"/>
@@ -269,9 +269,9 @@ Server: tfe
269
269
  </ul>
270
270
  </li>
271
271
  </ul>
272
-
273
-
274
-
272
+
273
+
274
+
275
275
  <ul class="nav secondary-nav language-dropdown">
276
276
  <li class="dropdown js-language-dropdown">
277
277
  <a class="dropdown-toggle" href="javascript:;">
@@ -323,7 +323,7 @@ Server: tfe
323
323
  </div>
324
324
  </li>
325
325
  </ul>
326
-
326
+
327
327
  <div class="pull-right">
328
328
  <form class="form-search js-search-form " action="/search" id="global-nav-search">
329
329
  <span class="search-icon js-search-action">
@@ -339,16 +339,16 @@ Server: tfe
339
339
  </div>
340
340
  <div class="dropdown-inner js-typeahead-results">
341
341
  <ul class="typeahead-items saved-searches-list">
342
-
342
+
343
343
  <li class="saved-search-item search-item"><a href="" data-search-query="" data-query-source="" data-ds="saved_search"><i class="generic-search"></i></a></li>
344
344
  </ul> <ul class="typeahead-items topics-list">
345
-
345
+
346
346
  <li class="topics-item search-item"><a href="" data-search-query="" data-query-source="typeahead_click" data-ds="topics"><i class="generic-search"></i></a></li>
347
347
  </ul> <div class="typeahead-accounts js-typeahead-accounts">
348
348
  <ul class="typeahead-items">
349
-
349
+
350
350
  <li data-user-id="" data-user-screenname="" data-remote="true" data-score="" class="typeahead-item typeahead-account-item js-selectable">
351
-
351
+
352
352
  <a data-query-source="typeahead_click" data-search-query="" data-ds="account">
353
353
  <img src="" width="24" height="24" class="avatar size24">
354
354
  <span class="fullname"></span>
@@ -361,8 +361,8 @@ Server: tfe
361
361
  </div> </div>
362
362
  </div></form>
363
363
  </div>
364
-
365
-
364
+
365
+
366
366
  <a id="close-all-button" class="close-all-tweets js-close-all-tweets" href="#" title="Cerrar todos los Tweets abiertos">
367
367
  <i class="nav-breaker"></i>
368
368
  </a>
@@ -381,39 +381,39 @@ Server: tfe
381
381
  <div id="page-container" class="wrapper wrapper-profile">
382
382
  <div class="module profile-card component" data-component-term="profile_follow_card" >
383
383
  <div class="flex-module clearfix ">
384
-
385
-
384
+
385
+
386
386
  <a href="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq.png" class="profile-picture" target="_blank">
387
- <img src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_reasonably_small.png" alt="W3CLove App" class="avatar size128">
387
+ <img src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_reasonably_small.png" alt="MarkupValidator App" class="avatar size128">
388
388
  </a>
389
-
390
- <div class="profile-card-inner" data-screen-name="W3CLove" data-user-id="318431467">
389
+
390
+ <div class="profile-card-inner" data-screen-name="MarkupValidator" data-user-id="318431467">
391
391
  <h1 class="fullname">
392
- W3CLove App
393
-
392
+ MarkupValidator App
393
+
394
394
  </h1>
395
395
  <h2 class="username">
396
- <span class="screen-name"><s>@</s>W3CLove</span>
397
-
396
+ <span class="screen-name"><s>@</s>MarkupValidator</span>
397
+
398
398
  </h2>
399
399
  <p class="bio ">Site-wide markup validation tool</p>
400
400
  <p class="location-and-url">
401
401
  <span class="location">
402
-
402
+
403
403
  </span>
404
404
  <span class="divider">&middot;</span>
405
405
  <span class="url">
406
- <a target="_blank" rel="me nofollow" href="http://w3clove.com">
407
- http://w3clove.com
406
+ <a target="_blank" rel="me nofollow" href="http://markupvalidator.com">
407
+ http://markupvalidator.com
408
408
  </a>
409
409
  </span>
410
410
  </p>
411
411
  </div>
412
412
  <div class="profile-card-actions">
413
-
413
+
414
414
  <div class="user-actions btn-group not-following " data-user-id="318431467"
415
- data-screen-name="W3CLove" data-name="W3CLove App" data-protected="false">
416
-
415
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-protected="false">
416
+
417
417
  <button class="js-follow-btn follow-button btn" type="button">
418
418
  <span class="button-text follow-text"><i class="follow"></i> Seguir</span>
419
419
  <span class="button-text following-text">Siguiendo</span>
@@ -423,13 +423,13 @@ Server: tfe
423
423
  <span class="button-text pending-text">Pendiente</span>
424
424
  <span class="button-text cancel-text">Cancelar</span>
425
425
  </button>
426
-
426
+
427
427
  </div>
428
428
  <ul class="stats js-mini-profile-stats">
429
- <li><a href="/W3CLove" data-element-term="tweet_stats" data-nav='profile'>
429
+ <li><a href="/MarkupValidator" data-element-term="tweet_stats" data-nav='profile'>
430
430
  <strong>298</strong> Tweets </a></li>
431
- <li><a href="/#!/W3CLove/following" data-element-term="following_stats" data-nav='following'><strong>190</strong> Siguiendo</a></li>
432
- <li><a href="/#!/W3CLove/followers" data-element-term="follower_stats" data-nav='followers'><strong>197</strong> Seguidores</a></li>
431
+ <li><a href="/#!/MarkupValidator/following" data-element-term="following_stats" data-nav='following'><strong>190</strong> Siguiendo</a></li>
432
+ <li><a href="/#!/MarkupValidator/followers" data-element-term="follower_stats" data-nav='followers'><strong>197</strong> Seguidores</a></li>
433
433
  </ul>
434
434
  </div>
435
435
  </div>
@@ -438,7 +438,7 @@ Server: tfe
438
438
  <div class="module signup-call-out profile-signup-call-out">
439
439
  <div class="flex-module">
440
440
  <div class="flex-module-header">
441
- <h2>Sigue a W3CLove App</h2>
441
+ <h2>Sigue a MarkupValidator App</h2>
442
442
  </div>
443
443
  <form action="https://twitter.com/signup" class="clearfix signup" method="post">
444
444
  <div class="holding name">
@@ -453,7 +453,7 @@ Server: tfe
453
453
  <input type="password" name="user[user_password]">
454
454
  <span class="holder">Contraseña</span>
455
455
  </div>
456
- <input name="follow" type="hidden" value="W3CLove">
456
+ <input name="follow" type="hidden" value="MarkupValidator">
457
457
  <input type="hidden" value="" name="context">
458
458
  <input type="hidden" value="fee7199505aff1976dbf75b780f4c04b3fd37937" name="authenticity_token"/>
459
459
  <input name="follows" type="hidden" value="">
@@ -466,34 +466,34 @@ Server: tfe
466
466
  <div class="module profile-nav">
467
467
  <ul class="js-nav-links">
468
468
  <li class="active">
469
- <a class="list-link" href="/W3CLove" data-nav="profile">Tweets <i class="chev-right"></i></a>
469
+ <a class="list-link" href="/MarkupValidator" data-nav="profile">Tweets <i class="chev-right"></i></a>
470
470
  </li>
471
471
  <li class="">
472
- <a class="list-link" href="/#!/W3CLove/following" data-nav="following">Siguiendo<i class="chev-right"></i></a>
472
+ <a class="list-link" href="/#!/MarkupValidator/following" data-nav="following">Siguiendo<i class="chev-right"></i></a>
473
473
  </li>
474
474
  <li class="">
475
- <a class="list-link" href="/#!/W3CLove/followers" data-nav="followers">Seguidores<i class="chev-right"></i></a>
475
+ <a class="list-link" href="/#!/MarkupValidator/followers" data-nav="followers">Seguidores<i class="chev-right"></i></a>
476
476
  </li>
477
477
  <li class="">
478
- <a class="list-link" href="/#!/W3CLove/favorites" data-nav="favorites">Favoritos<i class="chev-right"></i></a>
478
+ <a class="list-link" href="/#!/MarkupValidator/favorites" data-nav="favorites">Favoritos<i class="chev-right"></i></a>
479
479
  </li>
480
480
  <li class="">
481
- <a class="list-link" href="/W3CLove/lists" data-nav="all_lists">Listas<i class="chev-right"></i></a>
481
+ <a class="list-link" href="/MarkupValidator/lists" data-nav="all_lists">Listas<i class="chev-right"></i></a>
482
482
  </li>
483
483
  <li class="media-thumbnails recent_photos ">
484
- <a href="/#!/W3CLove/media/grid" class="list-link">
484
+ <a href="/#!/MarkupValidator/media/grid" class="list-link">
485
485
  <div class="media-header">
486
486
  Imágenes recientes
487
487
  <i class="chev-right"></i>
488
488
  </div>
489
489
  <div class="media-row">
490
490
  <div class="media-row-content">
491
- <span data-href="/#!/W3CLove/media/slideshow?url=pic.twitter.com%2FjkjukQ5f" data-url="https://p.twimg.com/AxxUMasCIAEzOMb.jpg:thumb" data-resolved-url-small="https://p.twimg.com/AxxUMasCIAEzOMb.jpg:thumb" class="media-thumbnail"></span>
492
- <span data-href="/#!/W3CLove/media/slideshow?url=http%3A%2F%2Fw3clove.com" data-url="http://w3clove.com" class="media-thumbnail"></span>
493
- <span data-href="/#!/W3CLove/media/slideshow?url=pic.twitter.com%2FW4gc94HE" data-url="https://p.twimg.com/AsuO1tuCQAMCQ-m.jpg:thumb" data-resolved-url-small="https://p.twimg.com/AsuO1tuCQAMCQ-m.jpg:thumb" class="media-thumbnail"></span>
494
- <span data-href="/#!/W3CLove/media/slideshow?url=http%3A%2F%2Frubygems.org%2Fgems%2Fhirefire" data-url="http://rubygems.org/gems/hirefire" class="media-thumbnail"></span>
495
- <span data-href="/#!/W3CLove/media/slideshow?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DUlVoZgM4fgI" data-url="http://www.youtube.com/watch?v=UlVoZgM4fgI" class="media-thumbnail"></span>
496
- <span data-href="/#!/W3CLove/media/slideshow?url=pic.twitter.com%2FGfNkcyxp" data-url="https://p.twimg.com/Ae5JXJyCIAAz-3S.jpg:thumb" data-resolved-url-small="https://p.twimg.com/Ae5JXJyCIAAz-3S.jpg:thumb" class="media-thumbnail"></span>
491
+ <span data-href="/#!/MarkupValidator/media/slideshow?url=pic.twitter.com%2FjkjukQ5f" data-url="https://p.twimg.com/AxxUMasCIAEzOMb.jpg:thumb" data-resolved-url-small="https://p.twimg.com/AxxUMasCIAEzOMb.jpg:thumb" class="media-thumbnail"></span>
492
+ <span data-href="/#!/MarkupValidator/media/slideshow?url=http%3A%2F%2Fmarkupvalidator.com" data-url="http://markupvalidator.com" class="media-thumbnail"></span>
493
+ <span data-href="/#!/MarkupValidator/media/slideshow?url=pic.twitter.com%2FW4gc94HE" data-url="https://p.twimg.com/AsuO1tuCQAMCQ-m.jpg:thumb" data-resolved-url-small="https://p.twimg.com/AsuO1tuCQAMCQ-m.jpg:thumb" class="media-thumbnail"></span>
494
+ <span data-href="/#!/MarkupValidator/media/slideshow?url=http%3A%2F%2Frubygems.org%2Fgems%2Fhirefire" data-url="http://rubygems.org/gems/hirefire" class="media-thumbnail"></span>
495
+ <span data-href="/#!/MarkupValidator/media/slideshow?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DUlVoZgM4fgI" data-url="http://www.youtube.com/watch?v=UlVoZgM4fgI" class="media-thumbnail"></span>
496
+ <span data-href="/#!/MarkupValidator/media/slideshow?url=pic.twitter.com%2FGfNkcyxp" data-url="https://p.twimg.com/Ae5JXJyCIAAz-3S.jpg:thumb" data-resolved-url-small="https://p.twimg.com/Ae5JXJyCIAAz-3S.jpg:thumb" class="media-thumbnail"></span>
497
497
  </div>
498
498
  </div>
499
499
  </a>
@@ -501,7 +501,7 @@ Server: tfe
501
501
  </div>
502
502
  </div>
503
503
 
504
-
504
+
505
505
  <div class="module site-footer ">
506
506
  <div class="flex-module">
507
507
  <div class="flex-module-inner js-items-container">
@@ -529,7 +529,7 @@ Server: tfe
529
529
  <div class="content-main" id="timeline">
530
530
  <div class="content-header">
531
531
  <div class="header-inner">
532
- <h2 class="js-timeline-title">Tweets
532
+ <h2 class="js-timeline-title">Tweets
533
533
  </h2>
534
534
  </div>
535
535
  </div>
@@ -538,25 +538,25 @@ Server: tfe
538
538
  >
539
539
  <div class="stream profile-stream">
540
540
  <div class="stream-items" id="stream-items-id"><div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="225704790494162944" data-item-type="tweet" id="stream-item-tweet-225704790494162944">
541
-
542
541
 
543
542
 
544
-
545
543
 
546
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
547
544
 
548
545
 
546
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
549
547
 
550
548
 
551
549
 
552
550
 
553
- "
551
+
552
+
553
+ "
554
554
  data-tweet-id="225704790494162944"
555
555
 
556
556
  data-item-id="225704790494162944"
557
557
 
558
558
 
559
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
559
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
560
560
 
561
561
 
562
562
 
@@ -570,7 +570,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
570
570
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
571
571
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
572
572
  &lt;/div&gt;
573
-
573
+
574
574
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
575
575
  &lt;/div&gt;
576
576
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -579,7 +579,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
579
579
 
580
580
  &lt;span class=&quot;tweet-source&quot;&gt;vía &lt;a href=&quot;http://twitter.com/#!/download/ipad&quot; rel=&quot;nofollow&quot;&gt;Twitter for iPad&lt;/a&gt;&lt;/span&gt;
581
581
 
582
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/225704790494162944&quot; &gt;Detalles&lt;/a&gt;
582
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/225704790494162944&quot; &gt;Detalles&lt;/a&gt;
583
583
 
584
584
 
585
585
  &lt;/span&gt;
@@ -592,46 +592,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
592
592
 
593
593
  >
594
594
 
595
-
595
+
596
596
  <i class="dogear"></i>
597
597
 
598
-
598
+
599
599
  <div class="content">
600
600
 
601
-
601
+
602
602
  <div class="stream-item-header">
603
603
  <small class="time">
604
- <a href="/W3CLove/status/225704790494162944" class="tweet-timestamp js-permalink" title="2:33 pm - 18 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342647190" data-long-form="true">18 jul</span></a>
604
+ <a href="/MarkupValidator/status/225704790494162944" class="tweet-timestamp js-permalink" title="2:33 pm - 18 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342647190" data-long-form="true">18 jul</span></a>
605
605
  </small>
606
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
607
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
608
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
609
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
606
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
607
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
608
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
609
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
610
610
  </a>
611
611
  </div>
612
612
 
613
-
613
+
614
614
  <p class="js-tweet-text">
615
615
  how many of you would like to sign up using email and password instead of twitter/google/facebook? And, why?
616
616
  </p>
617
617
 
618
-
618
+
619
619
  <div class="stream-item-footer">
620
-
621
-
622
-
623
-
624
-
620
+
621
+
622
+
623
+
624
+
625
625
  <div class="context">
626
626
  </div>
627
627
 
628
-
629
- <a class="details with-icn js-details" href="/W3CLove/status/225704790494162944">
628
+
629
+ <a class="details with-icn js-details" href="/MarkupValidator/status/225704790494162944">
630
630
  <span class="details-icon js-icon-container">
631
631
  </span>
632
632
  <b>
633
633
  <span class="expand-stream-item js-view-details">
634
-
634
+
635
635
  <span class="expand-action-wrapper">
636
636
  Abrir
637
637
  </span>
@@ -642,13 +642,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
642
642
  </b>
643
643
  </a>
644
644
 
645
-
646
-
647
-
648
-
645
+
646
+
647
+
648
+
649
649
  <ul class="tweet-actions js-actions">
650
650
  <li class="action-reply-container">
651
-
651
+
652
652
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
653
653
  <i class="sm-reply"></i>
654
654
  <b>Responder</b>
@@ -657,8 +657,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
657
657
  <li class="action-rt-container">
658
658
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
659
659
  <i class="sm-rt"></i>
660
-
661
-
660
+
661
+
662
662
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
663
663
  </a>
664
664
  </li>
@@ -671,14 +671,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
671
671
  <li class="action-fav-container">
672
672
  <a class="with-icn js-toggle-fav" href="#">
673
673
  <i class="sm-fav"></i>
674
-
675
-
674
+
675
+
676
676
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
677
677
  </a>
678
678
  </li>
679
679
  </ul> </div>
680
680
 
681
-
681
+
682
682
  <div class="expanded-content js-tweet-details-dropdown">
683
683
  </div>
684
684
  </div>
@@ -687,19 +687,19 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
687
687
 
688
688
  </div>
689
689
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="224946521702014976" data-item-type="tweet" id="stream-item-tweet-224946521702014976">
690
-
691
690
 
692
691
 
693
-
694
692
 
695
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
693
+
694
+
695
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
696
696
 
697
697
 
698
698
 
699
699
 
700
700
  with-social-proof
701
701
 
702
- "
702
+ "
703
703
  data-tweet-id="224946521702014976"
704
704
 
705
705
  data-item-id="224946521702014976"
@@ -719,7 +719,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
719
719
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
720
720
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container already-open&quot;&gt;
721
721
  &lt;/div&gt;
722
-
722
+
723
723
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
724
724
  &lt;/div&gt;
725
725
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -741,13 +741,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
741
741
 
742
742
  >
743
743
 
744
-
744
+
745
745
  <i class="dogear"></i>
746
746
 
747
-
747
+
748
748
  <div class="content">
749
749
 
750
-
750
+
751
751
  <div class="stream-item-header">
752
752
  <small class="time">
753
753
  <a href="/smashingmag/status/224946521702014976" class="tweet-timestamp js-permalink" title="12:20 pm - 16 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342466404" data-long-form="true">16 jul</span></a>
@@ -759,30 +759,30 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
759
759
  </a>
760
760
  </div>
761
761
 
762
-
762
+
763
763
  <p class="js-tweet-text">
764
- Good to know: Top Validation Errors, according to W3CLove (500K pages validated) - <a href="http://t.co/REbGB84p" class="twitter-timeline-link" target="_blank" data-expanded-url="http://bit.ly/Mbt5lk" ><span class="invisible">http://</span><span class="js-display-url">bit.ly/Mbt5lk</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
764
+ Good to know: Top Validation Errors, according to MarkupValidator (500K pages validated) - <a href="http://t.co/REbGB84p" class="twitter-timeline-link" target="_blank" data-expanded-url="http://bit.ly/Mbt5lk" ><span class="invisible">http://</span><span class="js-display-url">bit.ly/Mbt5lk</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
765
765
  </p>
766
766
 
767
-
767
+
768
768
  <div class="stream-item-footer">
769
-
770
-
771
-
772
-
773
-
769
+
770
+
771
+
772
+
773
+
774
774
  <div class="context">
775
-
776
- <span class="with-icn"><i class="badge-retweeted"></i><span class="js-retweet-text">Retwitteado por <a class="pretty-link js-user-profile-link" href="/smashingmag" data-user-id="318431467"><b>W3CLove App</b></a></span></span>
775
+
776
+ <span class="with-icn"><i class="badge-retweeted"></i><span class="js-retweet-text">Retwitteado por <a class="pretty-link js-user-profile-link" href="/smashingmag" data-user-id="318431467"><b>MarkupValidator App</b></a></span></span>
777
777
  </div>
778
778
 
779
-
779
+
780
780
  <a class="details with-icn js-details" href="/smashingmag/status/224946521702014976">
781
781
  <span class="details-icon js-icon-container">
782
782
  </span>
783
783
  <b>
784
784
  <span class="expand-stream-item js-view-details">
785
-
785
+
786
786
  <span class="expand-action-wrapper">
787
787
  Abrir
788
788
  </span>
@@ -793,13 +793,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
793
793
  </b>
794
794
  </a>
795
795
 
796
-
797
-
798
-
799
-
796
+
797
+
798
+
799
+
800
800
  <ul class="tweet-actions js-actions">
801
801
  <li class="action-reply-container">
802
-
802
+
803
803
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
804
804
  <i class="sm-reply"></i>
805
805
  <b>Responder</b>
@@ -808,8 +808,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
808
808
  <li class="action-rt-container">
809
809
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
810
810
  <i class="sm-rt"></i>
811
-
812
-
811
+
812
+
813
813
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
814
814
  </a>
815
815
  </li>
@@ -822,14 +822,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
822
822
  <li class="action-fav-container">
823
823
  <a class="with-icn js-toggle-fav" href="#">
824
824
  <i class="sm-fav"></i>
825
-
826
-
825
+
826
+
827
827
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
828
828
  </a>
829
829
  </li>
830
830
  </ul> </div>
831
831
 
832
-
832
+
833
833
  <div class="expanded-content js-tweet-details-dropdown">
834
834
  </div>
835
835
  </div>
@@ -838,25 +838,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
838
838
 
839
839
  </div>
840
840
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="224394142090936320" data-item-type="tweet" id="stream-item-tweet-224394142090936320">
841
-
842
841
 
843
842
 
844
-
845
843
 
846
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
844
+
845
+
846
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
847
847
 
848
848
 
849
849
 
850
850
 
851
851
  with-social-proof
852
852
 
853
- "
853
+ "
854
854
  data-tweet-id="224394142090936320"
855
855
 
856
856
  data-item-id="224394142090936320"
857
857
 
858
858
 
859
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
859
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
860
860
 
861
861
 
862
862
 
@@ -870,7 +870,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
870
870
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
871
871
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container already-open&quot;&gt;
872
872
  &lt;/div&gt;
873
-
873
+
874
874
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
875
875
  &lt;/div&gt;
876
876
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -879,7 +879,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
879
879
 
880
880
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
881
881
 
882
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/224394142090936320&quot; &gt;Detalles&lt;/a&gt;
882
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/224394142090936320&quot; &gt;Detalles&lt;/a&gt;
883
883
 
884
884
 
885
885
  &lt;/span&gt;
@@ -892,46 +892,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
892
892
 
893
893
  >
894
894
 
895
-
895
+
896
896
  <i class="dogear"></i>
897
897
 
898
-
898
+
899
899
  <div class="content">
900
900
 
901
-
901
+
902
902
  <div class="stream-item-header">
903
903
  <small class="time">
904
- <a href="/W3CLove/status/224394142090936320" class="tweet-timestamp js-permalink" title="11:45 pm - 14 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342334707" data-long-form="true">14 jul</span></a>
904
+ <a href="/MarkupValidator/status/224394142090936320" class="tweet-timestamp js-permalink" title="11:45 pm - 14 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342334707" data-long-form="true">14 jul</span></a>
905
905
  </small>
906
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
907
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
908
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
909
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
906
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
907
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
908
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
909
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
910
910
  </a>
911
911
  </div>
912
912
 
913
-
913
+
914
914
  <p class="js-tweet-text">
915
- More than 500,000 web pages have now been validated through <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a> !!!
915
+ More than 500,000 web pages have now been validated through <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a> !!!
916
916
  </p>
917
917
 
918
-
918
+
919
919
  <div class="stream-item-footer">
920
-
921
-
922
-
923
-
924
-
920
+
921
+
922
+
923
+
924
+
925
925
  <div class="context">
926
926
  </div>
927
927
 
928
-
929
- <a class="details with-icn js-details" href="/W3CLove/status/224394142090936320">
928
+
929
+ <a class="details with-icn js-details" href="/MarkupValidator/status/224394142090936320">
930
930
  <span class="details-icon js-icon-container">
931
931
  </span>
932
932
  <b>
933
933
  <span class="expand-stream-item js-view-details">
934
-
934
+
935
935
  <span class="expand-action-wrapper">
936
936
  Abrir
937
937
  </span>
@@ -942,13 +942,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
942
942
  </b>
943
943
  </a>
944
944
 
945
-
946
-
947
-
948
-
945
+
946
+
947
+
948
+
949
949
  <ul class="tweet-actions js-actions">
950
950
  <li class="action-reply-container">
951
-
951
+
952
952
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
953
953
  <i class="sm-reply"></i>
954
954
  <b>Responder</b>
@@ -957,8 +957,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
957
957
  <li class="action-rt-container">
958
958
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
959
959
  <i class="sm-rt"></i>
960
-
961
-
960
+
961
+
962
962
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
963
963
  </a>
964
964
  </li>
@@ -971,14 +971,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
971
971
  <li class="action-fav-container">
972
972
  <a class="with-icn js-toggle-fav" href="#">
973
973
  <i class="sm-fav"></i>
974
-
975
-
974
+
975
+
976
976
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
977
977
  </a>
978
978
  </li>
979
979
  </ul> </div>
980
980
 
981
-
981
+
982
982
  <div class="expanded-content js-tweet-details-dropdown">
983
983
  </div>
984
984
  </div>
@@ -987,25 +987,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
987
987
 
988
988
  </div>
989
989
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="224246988135346176" data-item-type="tweet" id="stream-item-tweet-224246988135346176">
990
-
991
990
 
992
991
 
993
-
994
992
 
995
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
993
+
994
+
995
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
996
996
 
997
997
 
998
998
 
999
999
 
1000
1000
 
1001
1001
 
1002
- "
1002
+ "
1003
1003
  data-tweet-id="224246988135346176"
1004
1004
 
1005
1005
  data-item-id="224246988135346176"
1006
1006
 
1007
1007
 
1008
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
1008
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
1009
1009
 
1010
1010
 
1011
1011
 
@@ -1019,7 +1019,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1019
1019
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
1020
1020
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
1021
1021
  &lt;/div&gt;
1022
-
1022
+
1023
1023
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
1024
1024
  &lt;/div&gt;
1025
1025
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -1028,7 +1028,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1028
1028
 
1029
1029
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
1030
1030
 
1031
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/224246988135346176&quot; &gt;Detalles&lt;/a&gt;
1031
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/224246988135346176&quot; &gt;Detalles&lt;/a&gt;
1032
1032
 
1033
1033
 
1034
1034
  &lt;/span&gt;
@@ -1041,46 +1041,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1041
1041
 
1042
1042
  >
1043
1043
 
1044
-
1044
+
1045
1045
  <i class="dogear"></i>
1046
1046
 
1047
-
1047
+
1048
1048
  <div class="content">
1049
1049
 
1050
-
1050
+
1051
1051
  <div class="stream-item-header">
1052
1052
  <small class="time">
1053
- <a href="/W3CLove/status/224246988135346176" class="tweet-timestamp js-permalink" title="2:00 pm - 14 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342299622" data-long-form="true">14 jul</span></a>
1053
+ <a href="/MarkupValidator/status/224246988135346176" class="tweet-timestamp js-permalink" title="2:00 pm - 14 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342299622" data-long-form="true">14 jul</span></a>
1054
1054
  </small>
1055
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
1056
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
1057
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
1058
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
1055
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
1056
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
1057
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
1058
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
1059
1059
  </a>
1060
1060
  </div>
1061
1061
 
1062
-
1062
+
1063
1063
  <p class="js-tweet-text">
1064
- the W3CLove forum is now open to all users through our Google group! Join the conversation and share your knowledge! <a href="http://t.co/DfnobjLL" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com/forum" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com/forum</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
1064
+ the MarkupValidator forum is now open to all users through our Google group! Join the conversation and share your knowledge! <a href="http://t.co/DfnobjLL" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com/forum" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com/forum</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
1065
1065
  </p>
1066
1066
 
1067
-
1067
+
1068
1068
  <div class="stream-item-footer">
1069
-
1070
-
1071
-
1072
-
1073
-
1069
+
1070
+
1071
+
1072
+
1073
+
1074
1074
  <div class="context">
1075
1075
  </div>
1076
1076
 
1077
-
1078
- <a class="details with-icn js-details" href="/W3CLove/status/224246988135346176">
1077
+
1078
+ <a class="details with-icn js-details" href="/MarkupValidator/status/224246988135346176">
1079
1079
  <span class="details-icon js-icon-container">
1080
1080
  </span>
1081
1081
  <b>
1082
1082
  <span class="expand-stream-item js-view-details">
1083
-
1083
+
1084
1084
  <span class="expand-action-wrapper">
1085
1085
  Abrir
1086
1086
  </span>
@@ -1091,13 +1091,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1091
1091
  </b>
1092
1092
  </a>
1093
1093
 
1094
-
1095
-
1096
-
1097
-
1094
+
1095
+
1096
+
1097
+
1098
1098
  <ul class="tweet-actions js-actions">
1099
1099
  <li class="action-reply-container">
1100
-
1100
+
1101
1101
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
1102
1102
  <i class="sm-reply"></i>
1103
1103
  <b>Responder</b>
@@ -1106,8 +1106,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1106
1106
  <li class="action-rt-container">
1107
1107
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
1108
1108
  <i class="sm-rt"></i>
1109
-
1110
-
1109
+
1110
+
1111
1111
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
1112
1112
  </a>
1113
1113
  </li>
@@ -1120,14 +1120,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1120
1120
  <li class="action-fav-container">
1121
1121
  <a class="with-icn js-toggle-fav" href="#">
1122
1122
  <i class="sm-fav"></i>
1123
-
1124
-
1123
+
1124
+
1125
1125
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
1126
1126
  </a>
1127
1127
  </li>
1128
1128
  </ul> </div>
1129
1129
 
1130
-
1130
+
1131
1131
  <div class="expanded-content js-tweet-details-dropdown">
1132
1132
  </div>
1133
1133
  </div>
@@ -1136,25 +1136,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1136
1136
 
1137
1137
  </div>
1138
1138
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="224146653752467456" data-item-type="tweet" id="stream-item-tweet-224146653752467456">
1139
-
1140
1139
 
1141
1140
 
1142
-
1143
1141
 
1144
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1142
+
1143
+
1144
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1145
1145
 
1146
1146
 
1147
1147
 
1148
1148
  has-native-media
1149
1149
 
1150
1150
 
1151
- "
1151
+ "
1152
1152
  data-tweet-id="224146653752467456"
1153
1153
 
1154
1154
  data-item-id="224146653752467456"
1155
1155
 
1156
1156
 
1157
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
1157
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
1158
1158
 
1159
1159
 
1160
1160
 
@@ -1167,7 +1167,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1167
1167
  &lt;div class=&quot;tweet-media&quot;&gt;
1168
1168
  &lt;div class=&quot;media-instance-container&quot;&gt;
1169
1169
  &lt;div class=&quot;twimg&quot;&gt;
1170
- &lt;a target=&quot;_blank&quot; href=&quot;http://twitter.com/W3CLove/status/224146653752467456/photo/1/large&quot;&gt;
1170
+ &lt;a target=&quot;_blank&quot; href=&quot;http://twitter.com/MarkupValidator/status/224146653752467456/photo/1/large&quot;&gt;
1171
1171
  &lt;img src=&quot;https://p.twimg.com/AxxUMasCIAEzOMb.jpg&quot;&gt;
1172
1172
  &lt;/a&gt;
1173
1173
  &lt;/div&gt;
@@ -1192,7 +1192,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1192
1192
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
1193
1193
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
1194
1194
  &lt;/div&gt;
1195
-
1195
+
1196
1196
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
1197
1197
  &lt;/div&gt;
1198
1198
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -1201,7 +1201,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1201
1201
 
1202
1202
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
1203
1203
 
1204
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/224146653752467456&quot; &gt;Detalles&lt;/a&gt;
1204
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/224146653752467456&quot; &gt;Detalles&lt;/a&gt;
1205
1205
 
1206
1206
 
1207
1207
  &lt;/span&gt;
@@ -1214,41 +1214,41 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1214
1214
 
1215
1215
  >
1216
1216
 
1217
-
1217
+
1218
1218
  <i class="dogear"></i>
1219
1219
 
1220
-
1220
+
1221
1221
  <div class="content">
1222
1222
 
1223
-
1223
+
1224
1224
  <div class="stream-item-header">
1225
1225
  <small class="time">
1226
- <a href="/W3CLove/status/224146653752467456" class="tweet-timestamp js-permalink" title="7:21 am - 14 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342275701" data-long-form="true">14 jul</span></a>
1226
+ <a href="/MarkupValidator/status/224146653752467456" class="tweet-timestamp js-permalink" title="7:21 am - 14 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342275701" data-long-form="true">14 jul</span></a>
1227
1227
  </small>
1228
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
1229
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
1230
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
1231
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
1228
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
1229
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
1230
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
1231
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
1232
1232
  </a>
1233
1233
  </div>
1234
1234
 
1235
-
1235
+
1236
1236
  <p class="js-tweet-text">
1237
- we&#39;re getting near the 500K frontier... will we break the records today? <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a> <a href="http://t.co/jkjukQ5f" class="twitter-timeline-link" data-pre-embedded="true" >pic.twitter.com/jkjukQ5f</a>
1237
+ we&#39;re getting near the 500K frontier... will we break the records today? <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a> <a href="http://t.co/jkjukQ5f" class="twitter-timeline-link" data-pre-embedded="true" >pic.twitter.com/jkjukQ5f</a>
1238
1238
  </p>
1239
1239
 
1240
-
1240
+
1241
1241
  <div class="stream-item-footer">
1242
-
1243
-
1244
-
1245
-
1246
-
1242
+
1243
+
1244
+
1245
+
1246
+
1247
1247
  <div class="context">
1248
1248
  </div>
1249
1249
 
1250
-
1251
- <a class="details with-icn js-details" href="/W3CLove/status/224146653752467456">
1250
+
1251
+ <a class="details with-icn js-details" href="/MarkupValidator/status/224146653752467456">
1252
1252
  <span class="details-icon js-icon-container">
1253
1253
  <i class="sm-image"></i>
1254
1254
  </span>
@@ -1262,13 +1262,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1262
1262
  </b>
1263
1263
  </a>
1264
1264
 
1265
-
1266
-
1267
-
1268
-
1265
+
1266
+
1267
+
1268
+
1269
1269
  <ul class="tweet-actions js-actions">
1270
1270
  <li class="action-reply-container">
1271
-
1271
+
1272
1272
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
1273
1273
  <i class="sm-reply"></i>
1274
1274
  <b>Responder</b>
@@ -1277,8 +1277,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1277
1277
  <li class="action-rt-container">
1278
1278
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
1279
1279
  <i class="sm-rt"></i>
1280
-
1281
-
1280
+
1281
+
1282
1282
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
1283
1283
  </a>
1284
1284
  </li>
@@ -1291,14 +1291,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1291
1291
  <li class="action-fav-container">
1292
1292
  <a class="with-icn js-toggle-fav" href="#">
1293
1293
  <i class="sm-fav"></i>
1294
-
1295
-
1294
+
1295
+
1296
1296
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
1297
1297
  </a>
1298
1298
  </li>
1299
1299
  </ul> </div>
1300
1300
 
1301
-
1301
+
1302
1302
  <div class="expanded-content js-tweet-details-dropdown">
1303
1303
  </div>
1304
1304
  </div>
@@ -1307,25 +1307,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1307
1307
 
1308
1308
  </div>
1309
1309
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="224132695175860224" data-item-type="tweet" id="stream-item-tweet-224132695175860224">
1310
-
1311
1310
 
1312
1311
 
1313
-
1314
1312
 
1315
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1313
+
1314
+
1315
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1316
1316
 
1317
1317
 
1318
1318
 
1319
1319
 
1320
1320
  with-social-proof
1321
1321
 
1322
- "
1322
+ "
1323
1323
  data-tweet-id="224132695175860224"
1324
1324
 
1325
1325
  data-item-id="224132695175860224"
1326
1326
 
1327
1327
 
1328
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
1328
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
1329
1329
 
1330
1330
 
1331
1331
 
@@ -1339,7 +1339,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1339
1339
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
1340
1340
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container already-open&quot;&gt;
1341
1341
  &lt;/div&gt;
1342
-
1342
+
1343
1343
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
1344
1344
  &lt;/div&gt;
1345
1345
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -1348,7 +1348,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1348
1348
 
1349
1349
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
1350
1350
 
1351
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/224132695175860224&quot; &gt;Detalles&lt;/a&gt;
1351
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/224132695175860224&quot; &gt;Detalles&lt;/a&gt;
1352
1352
 
1353
1353
 
1354
1354
  &lt;/span&gt;
@@ -1361,46 +1361,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1361
1361
 
1362
1362
  >
1363
1363
 
1364
-
1364
+
1365
1365
  <i class="dogear"></i>
1366
1366
 
1367
-
1367
+
1368
1368
  <div class="content">
1369
1369
 
1370
-
1370
+
1371
1371
  <div class="stream-item-header">
1372
1372
  <small class="time">
1373
- <a href="/W3CLove/status/224132695175860224" class="tweet-timestamp js-permalink" title="6:26 am - 14 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342272373" data-long-form="true">14 jul</span></a>
1373
+ <a href="/MarkupValidator/status/224132695175860224" class="tweet-timestamp js-permalink" title="6:26 am - 14 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342272373" data-long-form="true">14 jul</span></a>
1374
1374
  </small>
1375
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
1376
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
1377
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
1378
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
1375
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
1376
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
1377
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
1378
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
1379
1379
  </a>
1380
1380
  </div>
1381
1381
 
1382
-
1382
+
1383
1383
  <p class="js-tweet-text">
1384
- happy to see so many validations from the Australian Web Awards! Happy validation fixing everyone! <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a> <a href="/search/%23webawards" class="twitter-hashtag pretty-link" data-query-source="hashtag_click" ><s>#</s><b>webawards</b></a>
1384
+ happy to see so many validations from the Australian Web Awards! Happy validation fixing everyone! <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a> <a href="/search/%23webawards" class="twitter-hashtag pretty-link" data-query-source="hashtag_click" ><s>#</s><b>webawards</b></a>
1385
1385
  </p>
1386
1386
 
1387
-
1387
+
1388
1388
  <div class="stream-item-footer">
1389
-
1390
-
1391
-
1392
-
1393
-
1389
+
1390
+
1391
+
1392
+
1393
+
1394
1394
  <div class="context">
1395
1395
  </div>
1396
1396
 
1397
-
1398
- <a class="details with-icn js-details" href="/W3CLove/status/224132695175860224">
1397
+
1398
+ <a class="details with-icn js-details" href="/MarkupValidator/status/224132695175860224">
1399
1399
  <span class="details-icon js-icon-container">
1400
1400
  </span>
1401
1401
  <b>
1402
1402
  <span class="expand-stream-item js-view-details">
1403
-
1403
+
1404
1404
  <span class="expand-action-wrapper">
1405
1405
  Abrir
1406
1406
  </span>
@@ -1411,13 +1411,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1411
1411
  </b>
1412
1412
  </a>
1413
1413
 
1414
-
1415
-
1416
-
1417
-
1414
+
1415
+
1416
+
1417
+
1418
1418
  <ul class="tweet-actions js-actions">
1419
1419
  <li class="action-reply-container">
1420
-
1420
+
1421
1421
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
1422
1422
  <i class="sm-reply"></i>
1423
1423
  <b>Responder</b>
@@ -1426,8 +1426,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1426
1426
  <li class="action-rt-container">
1427
1427
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
1428
1428
  <i class="sm-rt"></i>
1429
-
1430
-
1429
+
1430
+
1431
1431
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
1432
1432
  </a>
1433
1433
  </li>
@@ -1440,14 +1440,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1440
1440
  <li class="action-fav-container">
1441
1441
  <a class="with-icn js-toggle-fav" href="#">
1442
1442
  <i class="sm-fav"></i>
1443
-
1444
-
1443
+
1444
+
1445
1445
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
1446
1446
  </a>
1447
1447
  </li>
1448
1448
  </ul> </div>
1449
1449
 
1450
-
1450
+
1451
1451
  <div class="expanded-content js-tweet-details-dropdown">
1452
1452
  </div>
1453
1453
  </div>
@@ -1456,25 +1456,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1456
1456
 
1457
1457
  </div>
1458
1458
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="223904764159733760" data-item-type="tweet" id="stream-item-tweet-223904764159733760">
1459
-
1460
1459
 
1461
1460
 
1462
-
1463
1461
 
1464
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1465
1462
 
1466
1463
 
1464
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1467
1465
 
1468
1466
 
1469
1467
 
1470
1468
 
1471
- "
1469
+
1470
+
1471
+ "
1472
1472
  data-tweet-id="223904764159733760"
1473
1473
 
1474
1474
  data-item-id="223904764159733760"
1475
1475
 
1476
1476
 
1477
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
1477
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
1478
1478
 
1479
1479
 
1480
1480
 
@@ -1488,7 +1488,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1488
1488
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
1489
1489
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
1490
1490
  &lt;/div&gt;
1491
-
1491
+
1492
1492
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
1493
1493
  &lt;/div&gt;
1494
1494
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -1497,7 +1497,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1497
1497
 
1498
1498
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
1499
1499
 
1500
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/223904764159733760&quot; &gt;Detalles&lt;/a&gt;
1500
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/223904764159733760&quot; &gt;Detalles&lt;/a&gt;
1501
1501
 
1502
1502
 
1503
1503
  &lt;/span&gt;
@@ -1510,46 +1510,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1510
1510
 
1511
1511
  >
1512
1512
 
1513
-
1513
+
1514
1514
  <i class="dogear"></i>
1515
1515
 
1516
-
1516
+
1517
1517
  <div class="content">
1518
1518
 
1519
-
1519
+
1520
1520
  <div class="stream-item-header">
1521
1521
  <small class="time">
1522
- <a href="/W3CLove/status/223904764159733760" class="tweet-timestamp js-permalink" title="3:20 pm - 13 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342218030" data-long-form="true">13 jul</span></a>
1522
+ <a href="/MarkupValidator/status/223904764159733760" class="tweet-timestamp js-permalink" title="3:20 pm - 13 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342218030" data-long-form="true">13 jul</span></a>
1523
1523
  </small>
1524
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
1525
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
1526
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
1527
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
1524
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
1525
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
1526
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
1527
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
1528
1528
  </a>
1529
1529
  </div>
1530
1530
 
1531
-
1531
+
1532
1532
  <p class="js-tweet-text">
1533
- we&#39;ve simplified our home page! What do you think? <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
1533
+ we&#39;ve simplified our home page! What do you think? <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
1534
1534
  </p>
1535
1535
 
1536
-
1536
+
1537
1537
  <div class="stream-item-footer">
1538
-
1539
-
1540
-
1541
-
1542
-
1538
+
1539
+
1540
+
1541
+
1542
+
1543
1543
  <div class="context">
1544
1544
  </div>
1545
1545
 
1546
-
1547
- <a class="details with-icn js-details" href="/W3CLove/status/223904764159733760">
1546
+
1547
+ <a class="details with-icn js-details" href="/MarkupValidator/status/223904764159733760">
1548
1548
  <span class="details-icon js-icon-container">
1549
1549
  </span>
1550
1550
  <b>
1551
1551
  <span class="expand-stream-item js-view-details">
1552
-
1552
+
1553
1553
  <span class="expand-action-wrapper">
1554
1554
  Abrir
1555
1555
  </span>
@@ -1560,13 +1560,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1560
1560
  </b>
1561
1561
  </a>
1562
1562
 
1563
-
1564
-
1565
-
1566
-
1563
+
1564
+
1565
+
1566
+
1567
1567
  <ul class="tweet-actions js-actions">
1568
1568
  <li class="action-reply-container">
1569
-
1569
+
1570
1570
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
1571
1571
  <i class="sm-reply"></i>
1572
1572
  <b>Responder</b>
@@ -1575,8 +1575,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1575
1575
  <li class="action-rt-container">
1576
1576
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
1577
1577
  <i class="sm-rt"></i>
1578
-
1579
-
1578
+
1579
+
1580
1580
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
1581
1581
  </a>
1582
1582
  </li>
@@ -1589,14 +1589,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1589
1589
  <li class="action-fav-container">
1590
1590
  <a class="with-icn js-toggle-fav" href="#">
1591
1591
  <i class="sm-fav"></i>
1592
-
1593
-
1592
+
1593
+
1594
1594
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
1595
1595
  </a>
1596
1596
  </li>
1597
1597
  </ul> </div>
1598
1598
 
1599
-
1599
+
1600
1600
  <div class="expanded-content js-tweet-details-dropdown">
1601
1601
  </div>
1602
1602
  </div>
@@ -1605,25 +1605,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1605
1605
 
1606
1606
  </div>
1607
1607
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="223888105701257216" data-item-type="tweet" id="stream-item-tweet-223888105701257216">
1608
-
1609
1608
 
1610
1609
 
1611
-
1612
1610
 
1613
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1614
1611
 
1615
1612
 
1613
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1614
+
1616
1615
 
1617
1616
 
1618
1617
 
1619
1618
 
1620
- "
1619
+
1620
+ "
1621
1621
  data-tweet-id="223888105701257216"
1622
1622
 
1623
1623
  data-item-id="223888105701257216"
1624
1624
 
1625
1625
 
1626
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
1626
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
1627
1627
 
1628
1628
 
1629
1629
 
@@ -1637,7 +1637,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1637
1637
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
1638
1638
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
1639
1639
  &lt;/div&gt;
1640
-
1640
+
1641
1641
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
1642
1642
  &lt;/div&gt;
1643
1643
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -1646,7 +1646,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1646
1646
 
1647
1647
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
1648
1648
 
1649
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/223888105701257216&quot; &gt;Detalles&lt;/a&gt;
1649
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/223888105701257216&quot; &gt;Detalles&lt;/a&gt;
1650
1650
 
1651
1651
 
1652
1652
  &lt;/span&gt;
@@ -1659,46 +1659,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1659
1659
 
1660
1660
  >
1661
1661
 
1662
-
1662
+
1663
1663
  <i class="dogear"></i>
1664
1664
 
1665
-
1665
+
1666
1666
  <div class="content">
1667
1667
 
1668
-
1668
+
1669
1669
  <div class="stream-item-header">
1670
1670
  <small class="time">
1671
- <a href="/W3CLove/status/223888105701257216" class="tweet-timestamp js-permalink" title="2:14 pm - 13 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342214058" data-long-form="true">13 jul</span></a>
1671
+ <a href="/MarkupValidator/status/223888105701257216" class="tweet-timestamp js-permalink" title="2:14 pm - 13 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342214058" data-long-form="true">13 jul</span></a>
1672
1672
  </small>
1673
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
1674
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
1675
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
1676
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
1673
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
1674
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
1675
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
1676
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
1677
1677
  </a>
1678
1678
  </div>
1679
1679
 
1680
-
1680
+
1681
1681
  <p class="js-tweet-text">
1682
- we&#39;ve added authentication to the API. Contact us if you&#39;re a developer and want to use it! <a href="http://t.co/H36EpZRf" class="twitter-timeline-link" target="_blank" data-expanded-url="http://developer.w3clove.com" ><span class="invisible">http://</span><span class="js-display-url">developer.w3clove.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
1682
+ we&#39;ve added authentication to the API. Contact us if you&#39;re a developer and want to use it! <a href="http://t.co/H36EpZRf" class="twitter-timeline-link" target="_blank" data-expanded-url="http://developer.markupvalidator.com" ><span class="invisible">http://</span><span class="js-display-url">developer.markupvalidator.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
1683
1683
  </p>
1684
1684
 
1685
-
1685
+
1686
1686
  <div class="stream-item-footer">
1687
-
1688
-
1689
-
1690
-
1691
-
1687
+
1688
+
1689
+
1690
+
1691
+
1692
1692
  <div class="context">
1693
1693
  </div>
1694
1694
 
1695
-
1696
- <a class="details with-icn js-details" href="/W3CLove/status/223888105701257216">
1695
+
1696
+ <a class="details with-icn js-details" href="/MarkupValidator/status/223888105701257216">
1697
1697
  <span class="details-icon js-icon-container">
1698
1698
  </span>
1699
1699
  <b>
1700
1700
  <span class="expand-stream-item js-view-details">
1701
-
1701
+
1702
1702
  <span class="expand-action-wrapper">
1703
1703
  Abrir
1704
1704
  </span>
@@ -1709,13 +1709,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1709
1709
  </b>
1710
1710
  </a>
1711
1711
 
1712
-
1713
-
1714
-
1715
-
1712
+
1713
+
1714
+
1715
+
1716
1716
  <ul class="tweet-actions js-actions">
1717
1717
  <li class="action-reply-container">
1718
-
1718
+
1719
1719
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
1720
1720
  <i class="sm-reply"></i>
1721
1721
  <b>Responder</b>
@@ -1724,8 +1724,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1724
1724
  <li class="action-rt-container">
1725
1725
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
1726
1726
  <i class="sm-rt"></i>
1727
-
1728
-
1727
+
1728
+
1729
1729
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
1730
1730
  </a>
1731
1731
  </li>
@@ -1738,14 +1738,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1738
1738
  <li class="action-fav-container">
1739
1739
  <a class="with-icn js-toggle-fav" href="#">
1740
1740
  <i class="sm-fav"></i>
1741
-
1742
-
1741
+
1742
+
1743
1743
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
1744
1744
  </a>
1745
1745
  </li>
1746
1746
  </ul> </div>
1747
1747
 
1748
-
1748
+
1749
1749
  <div class="expanded-content js-tweet-details-dropdown">
1750
1750
  </div>
1751
1751
  </div>
@@ -1754,25 +1754,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1754
1754
 
1755
1755
  </div>
1756
1756
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="223683874817974273" data-item-type="tweet" id="stream-item-tweet-223683874817974273">
1757
-
1758
1757
 
1759
1758
 
1760
-
1761
1759
 
1762
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1760
+
1761
+
1762
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1763
1763
 
1764
1764
 
1765
1765
 
1766
1766
 
1767
1767
 
1768
1768
 
1769
- "
1769
+ "
1770
1770
  data-tweet-id="223683874817974273"
1771
1771
 
1772
1772
  data-item-id="223683874817974273"
1773
1773
 
1774
1774
 
1775
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
1775
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
1776
1776
 
1777
1777
 
1778
1778
 
@@ -1786,7 +1786,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1786
1786
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
1787
1787
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
1788
1788
  &lt;/div&gt;
1789
-
1789
+
1790
1790
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
1791
1791
  &lt;/div&gt;
1792
1792
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -1795,7 +1795,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1795
1795
 
1796
1796
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
1797
1797
 
1798
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/223683874817974273&quot; &gt;Detalles&lt;/a&gt;
1798
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/223683874817974273&quot; &gt;Detalles&lt;/a&gt;
1799
1799
 
1800
1800
 
1801
1801
  &lt;/span&gt;
@@ -1808,46 +1808,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1808
1808
 
1809
1809
  >
1810
1810
 
1811
-
1811
+
1812
1812
  <i class="dogear"></i>
1813
1813
 
1814
-
1814
+
1815
1815
  <div class="content">
1816
1816
 
1817
-
1817
+
1818
1818
  <div class="stream-item-header">
1819
1819
  <small class="time">
1820
- <a href="/W3CLove/status/223683874817974273" class="tweet-timestamp js-permalink" title="12:42 am - 13 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342165366" data-long-form="true">13 jul</span></a>
1820
+ <a href="/MarkupValidator/status/223683874817974273" class="tweet-timestamp js-permalink" title="12:42 am - 13 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342165366" data-long-form="true">13 jul</span></a>
1821
1821
  </small>
1822
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
1823
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
1824
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
1825
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
1822
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
1823
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
1824
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
1825
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
1826
1826
  </a>
1827
1827
  </div>
1828
1828
 
1829
-
1829
+
1830
1830
  <p class="js-tweet-text">
1831
- 497,929 have been validated through our service so far... we&#39;re getting near the 500K frontier! <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
1831
+ 497,929 have been validated through our service so far... we&#39;re getting near the 500K frontier! <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
1832
1832
  </p>
1833
1833
 
1834
-
1834
+
1835
1835
  <div class="stream-item-footer">
1836
-
1837
-
1838
-
1839
-
1840
-
1836
+
1837
+
1838
+
1839
+
1840
+
1841
1841
  <div class="context">
1842
1842
  </div>
1843
1843
 
1844
-
1845
- <a class="details with-icn js-details" href="/W3CLove/status/223683874817974273">
1844
+
1845
+ <a class="details with-icn js-details" href="/MarkupValidator/status/223683874817974273">
1846
1846
  <span class="details-icon js-icon-container">
1847
1847
  </span>
1848
1848
  <b>
1849
1849
  <span class="expand-stream-item js-view-details">
1850
-
1850
+
1851
1851
  <span class="expand-action-wrapper">
1852
1852
  Abrir
1853
1853
  </span>
@@ -1858,13 +1858,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1858
1858
  </b>
1859
1859
  </a>
1860
1860
 
1861
-
1862
-
1863
-
1864
-
1861
+
1862
+
1863
+
1864
+
1865
1865
  <ul class="tweet-actions js-actions">
1866
1866
  <li class="action-reply-container">
1867
-
1867
+
1868
1868
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
1869
1869
  <i class="sm-reply"></i>
1870
1870
  <b>Responder</b>
@@ -1873,8 +1873,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1873
1873
  <li class="action-rt-container">
1874
1874
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
1875
1875
  <i class="sm-rt"></i>
1876
-
1877
-
1876
+
1877
+
1878
1878
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
1879
1879
  </a>
1880
1880
  </li>
@@ -1887,14 +1887,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1887
1887
  <li class="action-fav-container">
1888
1888
  <a class="with-icn js-toggle-fav" href="#">
1889
1889
  <i class="sm-fav"></i>
1890
-
1891
-
1890
+
1891
+
1892
1892
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
1893
1893
  </a>
1894
1894
  </li>
1895
1895
  </ul> </div>
1896
1896
 
1897
-
1897
+
1898
1898
  <div class="expanded-content js-tweet-details-dropdown">
1899
1899
  </div>
1900
1900
  </div>
@@ -1903,25 +1903,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1903
1903
 
1904
1904
  </div>
1905
1905
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="223532412192301056" data-item-type="tweet" id="stream-item-tweet-223532412192301056">
1906
-
1907
1906
 
1908
1907
 
1909
-
1910
1908
 
1911
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1912
1909
 
1913
1910
 
1911
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
1912
+
1914
1913
 
1915
1914
 
1916
1915
 
1917
1916
 
1918
- "
1917
+
1918
+ "
1919
1919
  data-tweet-id="223532412192301056"
1920
1920
 
1921
1921
  data-item-id="223532412192301056"
1922
1922
 
1923
1923
 
1924
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
1924
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
1925
1925
 
1926
1926
 
1927
1927
 
@@ -1935,7 +1935,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1935
1935
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
1936
1936
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
1937
1937
  &lt;/div&gt;
1938
-
1938
+
1939
1939
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
1940
1940
  &lt;/div&gt;
1941
1941
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -1944,7 +1944,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1944
1944
 
1945
1945
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
1946
1946
 
1947
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/223532412192301056&quot; &gt;Detalles&lt;/a&gt;
1947
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/223532412192301056&quot; &gt;Detalles&lt;/a&gt;
1948
1948
 
1949
1949
 
1950
1950
  &lt;/span&gt;
@@ -1957,41 +1957,41 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
1957
1957
 
1958
1958
  >
1959
1959
 
1960
-
1960
+
1961
1961
  <i class="dogear"></i>
1962
1962
 
1963
-
1963
+
1964
1964
  <div class="content">
1965
1965
 
1966
-
1966
+
1967
1967
  <div class="stream-item-header">
1968
1968
  <small class="time">
1969
- <a href="/W3CLove/status/223532412192301056" class="tweet-timestamp js-permalink" title="2:40 pm - 12 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342129254" data-long-form="true">12 jul</span></a>
1969
+ <a href="/MarkupValidator/status/223532412192301056" class="tweet-timestamp js-permalink" title="2:40 pm - 12 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342129254" data-long-form="true">12 jul</span></a>
1970
1970
  </small>
1971
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
1972
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
1973
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
1974
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
1971
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
1972
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
1973
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
1974
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
1975
1975
  </a>
1976
1976
  </div>
1977
1977
 
1978
-
1978
+
1979
1979
  <p class="js-tweet-text">
1980
1980
  <a href="/RadiumThemes" class="twitter-atreply pretty-link" ><s>@</s><b>RadiumThemes</b></a> thanks, glad you like the redesign! Still some improvements to come soon, though :)
1981
1981
  </p>
1982
1982
 
1983
-
1983
+
1984
1984
  <div class="stream-item-footer">
1985
-
1986
-
1987
-
1988
-
1989
-
1985
+
1986
+
1987
+
1988
+
1989
+
1990
1990
  <div class="context">
1991
1991
  </div>
1992
1992
 
1993
-
1994
- <a class="details with-icn js-details" href="/W3CLove/status/223532412192301056">
1993
+
1994
+ <a class="details with-icn js-details" href="/MarkupValidator/status/223532412192301056">
1995
1995
  <span class="details-icon js-icon-container">
1996
1996
  <i class="sm-chat"></i>
1997
1997
  </span>
@@ -2005,13 +2005,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2005
2005
  </b>
2006
2006
  </a>
2007
2007
 
2008
-
2009
-
2010
-
2011
-
2008
+
2009
+
2010
+
2011
+
2012
2012
  <ul class="tweet-actions js-actions">
2013
2013
  <li class="action-reply-container">
2014
-
2014
+
2015
2015
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
2016
2016
  <i class="sm-reply"></i>
2017
2017
  <b>Responder</b>
@@ -2020,8 +2020,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2020
2020
  <li class="action-rt-container">
2021
2021
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
2022
2022
  <i class="sm-rt"></i>
2023
-
2024
-
2023
+
2024
+
2025
2025
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
2026
2026
  </a>
2027
2027
  </li>
@@ -2034,14 +2034,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2034
2034
  <li class="action-fav-container">
2035
2035
  <a class="with-icn js-toggle-fav" href="#">
2036
2036
  <i class="sm-fav"></i>
2037
-
2038
-
2037
+
2038
+
2039
2039
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
2040
2040
  </a>
2041
2041
  </li>
2042
2042
  </ul> </div>
2043
2043
 
2044
-
2044
+
2045
2045
  <div class="expanded-content js-tweet-details-dropdown">
2046
2046
  </div>
2047
2047
  </div>
@@ -2050,25 +2050,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2050
2050
 
2051
2051
  </div>
2052
2052
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="223435262129221632" data-item-type="tweet" id="stream-item-tweet-223435262129221632">
2053
-
2054
2053
 
2055
2054
 
2056
-
2057
2055
 
2058
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2056
+
2057
+
2058
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2059
2059
 
2060
2060
 
2061
2061
 
2062
2062
 
2063
2063
  with-social-proof
2064
2064
 
2065
- "
2065
+ "
2066
2066
  data-tweet-id="223435262129221632"
2067
2067
 
2068
2068
  data-item-id="223435262129221632"
2069
2069
 
2070
2070
 
2071
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
2071
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
2072
2072
 
2073
2073
 
2074
2074
 
@@ -2082,7 +2082,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2082
2082
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
2083
2083
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container already-open&quot;&gt;
2084
2084
  &lt;/div&gt;
2085
-
2085
+
2086
2086
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
2087
2087
  &lt;/div&gt;
2088
2088
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -2091,7 +2091,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2091
2091
 
2092
2092
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
2093
2093
 
2094
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/223435262129221632&quot; &gt;Detalles&lt;/a&gt;
2094
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/223435262129221632&quot; &gt;Detalles&lt;/a&gt;
2095
2095
 
2096
2096
 
2097
2097
  &lt;/span&gt;
@@ -2104,46 +2104,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2104
2104
 
2105
2105
  >
2106
2106
 
2107
-
2107
+
2108
2108
  <i class="dogear"></i>
2109
2109
 
2110
-
2110
+
2111
2111
  <div class="content">
2112
2112
 
2113
-
2113
+
2114
2114
  <div class="stream-item-header">
2115
2115
  <small class="time">
2116
- <a href="/W3CLove/status/223435262129221632" class="tweet-timestamp js-permalink" title="8:14 am - 12 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342106092" data-long-form="true">12 jul</span></a>
2116
+ <a href="/MarkupValidator/status/223435262129221632" class="tweet-timestamp js-permalink" title="8:14 am - 12 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1342106092" data-long-form="true">12 jul</span></a>
2117
2117
  </small>
2118
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
2119
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
2120
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
2121
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
2118
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
2119
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
2120
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
2121
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
2122
2122
  </a>
2123
2123
  </div>
2124
2124
 
2125
-
2125
+
2126
2126
  <p class="js-tweet-text">
2127
- now that we&#39;re running our own dedicated validation server, validations are super fast! Try it now: <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
2127
+ now that we&#39;re running our own dedicated validation server, validations are super fast! Try it now: <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
2128
2128
  </p>
2129
2129
 
2130
-
2130
+
2131
2131
  <div class="stream-item-footer">
2132
-
2133
-
2134
-
2135
-
2136
-
2132
+
2133
+
2134
+
2135
+
2136
+
2137
2137
  <div class="context">
2138
2138
  </div>
2139
2139
 
2140
-
2141
- <a class="details with-icn js-details" href="/W3CLove/status/223435262129221632">
2140
+
2141
+ <a class="details with-icn js-details" href="/MarkupValidator/status/223435262129221632">
2142
2142
  <span class="details-icon js-icon-container">
2143
2143
  </span>
2144
2144
  <b>
2145
2145
  <span class="expand-stream-item js-view-details">
2146
-
2146
+
2147
2147
  <span class="expand-action-wrapper">
2148
2148
  Abrir
2149
2149
  </span>
@@ -2154,13 +2154,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2154
2154
  </b>
2155
2155
  </a>
2156
2156
 
2157
-
2158
-
2159
-
2160
-
2157
+
2158
+
2159
+
2160
+
2161
2161
  <ul class="tweet-actions js-actions">
2162
2162
  <li class="action-reply-container">
2163
-
2163
+
2164
2164
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
2165
2165
  <i class="sm-reply"></i>
2166
2166
  <b>Responder</b>
@@ -2169,8 +2169,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2169
2169
  <li class="action-rt-container">
2170
2170
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
2171
2171
  <i class="sm-rt"></i>
2172
-
2173
-
2172
+
2173
+
2174
2174
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
2175
2175
  </a>
2176
2176
  </li>
@@ -2183,14 +2183,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2183
2183
  <li class="action-fav-container">
2184
2184
  <a class="with-icn js-toggle-fav" href="#">
2185
2185
  <i class="sm-fav"></i>
2186
-
2187
-
2186
+
2187
+
2188
2188
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
2189
2189
  </a>
2190
2190
  </li>
2191
2191
  </ul> </div>
2192
2192
 
2193
-
2193
+
2194
2194
  <div class="expanded-content js-tweet-details-dropdown">
2195
2195
  </div>
2196
2196
  </div>
@@ -2199,25 +2199,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2199
2199
 
2200
2200
  </div>
2201
2201
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="222259505692549120" data-item-type="tweet" id="stream-item-tweet-222259505692549120">
2202
-
2203
2202
 
2204
2203
 
2205
-
2206
2204
 
2207
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2205
+
2206
+
2207
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2208
2208
 
2209
2209
 
2210
2210
 
2211
2211
 
2212
2212
 
2213
2213
 
2214
- "
2214
+ "
2215
2215
  data-tweet-id="222259505692549120"
2216
2216
 
2217
2217
  data-item-id="222259505692549120"
2218
2218
 
2219
2219
 
2220
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
2220
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
2221
2221
 
2222
2222
 
2223
2223
 
@@ -2231,7 +2231,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2231
2231
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
2232
2232
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
2233
2233
  &lt;/div&gt;
2234
-
2234
+
2235
2235
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
2236
2236
  &lt;/div&gt;
2237
2237
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -2240,7 +2240,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2240
2240
 
2241
2241
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
2242
2242
 
2243
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/222259505692549120&quot; &gt;Detalles&lt;/a&gt;
2243
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/222259505692549120&quot; &gt;Detalles&lt;/a&gt;
2244
2244
 
2245
2245
 
2246
2246
  &lt;/span&gt;
@@ -2253,41 +2253,41 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2253
2253
 
2254
2254
  >
2255
2255
 
2256
-
2256
+
2257
2257
  <i class="dogear"></i>
2258
2258
 
2259
-
2259
+
2260
2260
  <div class="content">
2261
2261
 
2262
-
2262
+
2263
2263
  <div class="stream-item-header">
2264
2264
  <small class="time">
2265
- <a href="/W3CLove/status/222259505692549120" class="tweet-timestamp js-permalink" title="2:22 am - 9 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341825770" data-long-form="true">9 jul</span></a>
2265
+ <a href="/MarkupValidator/status/222259505692549120" class="tweet-timestamp js-permalink" title="2:22 am - 9 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341825770" data-long-form="true">9 jul</span></a>
2266
2266
  </small>
2267
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
2268
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
2269
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
2270
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
2267
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
2268
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
2269
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
2270
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
2271
2271
  </a>
2272
2272
  </div>
2273
2273
 
2274
-
2274
+
2275
2275
  <p class="js-tweet-text">
2276
2276
  <a href="/locks" class="twitter-atreply pretty-link" ><s>@</s><b>locks</b></a> thanks!
2277
2277
  </p>
2278
2278
 
2279
-
2279
+
2280
2280
  <div class="stream-item-footer">
2281
-
2282
-
2283
-
2284
-
2285
-
2281
+
2282
+
2283
+
2284
+
2285
+
2286
2286
  <div class="context">
2287
2287
  </div>
2288
2288
 
2289
-
2290
- <a class="details with-icn js-details" href="/W3CLove/status/222259505692549120">
2289
+
2290
+ <a class="details with-icn js-details" href="/MarkupValidator/status/222259505692549120">
2291
2291
  <span class="details-icon js-icon-container">
2292
2292
  <i class="sm-chat"></i>
2293
2293
  </span>
@@ -2301,13 +2301,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2301
2301
  </b>
2302
2302
  </a>
2303
2303
 
2304
-
2305
-
2306
-
2307
-
2304
+
2305
+
2306
+
2307
+
2308
2308
  <ul class="tweet-actions js-actions">
2309
2309
  <li class="action-reply-container">
2310
-
2310
+
2311
2311
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
2312
2312
  <i class="sm-reply"></i>
2313
2313
  <b>Responder</b>
@@ -2316,8 +2316,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2316
2316
  <li class="action-rt-container">
2317
2317
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
2318
2318
  <i class="sm-rt"></i>
2319
-
2320
-
2319
+
2320
+
2321
2321
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
2322
2322
  </a>
2323
2323
  </li>
@@ -2330,14 +2330,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2330
2330
  <li class="action-fav-container">
2331
2331
  <a class="with-icn js-toggle-fav" href="#">
2332
2332
  <i class="sm-fav"></i>
2333
-
2334
-
2333
+
2334
+
2335
2335
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
2336
2336
  </a>
2337
2337
  </li>
2338
2338
  </ul> </div>
2339
2339
 
2340
-
2340
+
2341
2341
  <div class="expanded-content js-tweet-details-dropdown">
2342
2342
  </div>
2343
2343
  </div>
@@ -2346,25 +2346,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2346
2346
 
2347
2347
  </div>
2348
2348
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="222259433391128577" data-item-type="tweet" id="stream-item-tweet-222259433391128577">
2349
-
2350
2349
 
2351
2350
 
2352
-
2353
2351
 
2354
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2355
2352
 
2356
2353
 
2354
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2357
2355
 
2358
2356
 
2359
2357
 
2360
2358
 
2361
- "
2359
+
2360
+
2361
+ "
2362
2362
  data-tweet-id="222259433391128577"
2363
2363
 
2364
2364
  data-item-id="222259433391128577"
2365
2365
 
2366
2366
 
2367
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
2367
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
2368
2368
 
2369
2369
 
2370
2370
 
@@ -2378,7 +2378,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2378
2378
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
2379
2379
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
2380
2380
  &lt;/div&gt;
2381
-
2381
+
2382
2382
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
2383
2383
  &lt;/div&gt;
2384
2384
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -2387,7 +2387,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2387
2387
 
2388
2388
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
2389
2389
 
2390
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/222259433391128577&quot; &gt;Detalles&lt;/a&gt;
2390
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/222259433391128577&quot; &gt;Detalles&lt;/a&gt;
2391
2391
 
2392
2392
 
2393
2393
  &lt;/span&gt;
@@ -2400,41 +2400,41 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2400
2400
 
2401
2401
  >
2402
2402
 
2403
-
2403
+
2404
2404
  <i class="dogear"></i>
2405
2405
 
2406
-
2406
+
2407
2407
  <div class="content">
2408
2408
 
2409
-
2409
+
2410
2410
  <div class="stream-item-header">
2411
2411
  <small class="time">
2412
- <a href="/W3CLove/status/222259433391128577" class="tweet-timestamp js-permalink" title="2:22 am - 9 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341825752" data-long-form="true">9 jul</span></a>
2412
+ <a href="/MarkupValidator/status/222259433391128577" class="tweet-timestamp js-permalink" title="2:22 am - 9 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341825752" data-long-form="true">9 jul</span></a>
2413
2413
  </small>
2414
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
2415
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
2416
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
2417
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
2414
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
2415
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
2416
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
2417
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
2418
2418
  </a>
2419
2419
  </div>
2420
2420
 
2421
-
2421
+
2422
2422
  <p class="js-tweet-text">
2423
2423
  <a href="/dgilperez" class="twitter-atreply pretty-link" ><s>@</s><b>dgilperez</b></a> thanks!
2424
2424
  </p>
2425
2425
 
2426
-
2426
+
2427
2427
  <div class="stream-item-footer">
2428
-
2429
-
2430
-
2431
-
2432
-
2428
+
2429
+
2430
+
2431
+
2432
+
2433
2433
  <div class="context">
2434
2434
  </div>
2435
2435
 
2436
-
2437
- <a class="details with-icn js-details" href="/W3CLove/status/222259433391128577">
2436
+
2437
+ <a class="details with-icn js-details" href="/MarkupValidator/status/222259433391128577">
2438
2438
  <span class="details-icon js-icon-container">
2439
2439
  <i class="sm-chat"></i>
2440
2440
  </span>
@@ -2448,13 +2448,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2448
2448
  </b>
2449
2449
  </a>
2450
2450
 
2451
-
2452
-
2453
-
2454
-
2451
+
2452
+
2453
+
2454
+
2455
2455
  <ul class="tweet-actions js-actions">
2456
2456
  <li class="action-reply-container">
2457
-
2457
+
2458
2458
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
2459
2459
  <i class="sm-reply"></i>
2460
2460
  <b>Responder</b>
@@ -2463,8 +2463,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2463
2463
  <li class="action-rt-container">
2464
2464
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
2465
2465
  <i class="sm-rt"></i>
2466
-
2467
-
2466
+
2467
+
2468
2468
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
2469
2469
  </a>
2470
2470
  </li>
@@ -2477,14 +2477,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2477
2477
  <li class="action-fav-container">
2478
2478
  <a class="with-icn js-toggle-fav" href="#">
2479
2479
  <i class="sm-fav"></i>
2480
-
2481
-
2480
+
2481
+
2482
2482
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
2483
2483
  </a>
2484
2484
  </li>
2485
2485
  </ul> </div>
2486
2486
 
2487
-
2487
+
2488
2488
  <div class="expanded-content js-tweet-details-dropdown">
2489
2489
  </div>
2490
2490
  </div>
@@ -2493,25 +2493,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2493
2493
 
2494
2494
  </div>
2495
2495
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="222259380039589888" data-item-type="tweet" id="stream-item-tweet-222259380039589888">
2496
-
2497
2496
 
2498
2497
 
2499
-
2500
2498
 
2501
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2502
2499
 
2503
2500
 
2501
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2502
+
2504
2503
 
2505
2504
 
2506
2505
 
2507
2506
 
2508
- "
2507
+
2508
+ "
2509
2509
  data-tweet-id="222259380039589888"
2510
2510
 
2511
2511
  data-item-id="222259380039589888"
2512
2512
 
2513
2513
 
2514
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
2514
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
2515
2515
 
2516
2516
 
2517
2517
 
@@ -2525,7 +2525,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2525
2525
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
2526
2526
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
2527
2527
  &lt;/div&gt;
2528
-
2528
+
2529
2529
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
2530
2530
  &lt;/div&gt;
2531
2531
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -2534,7 +2534,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2534
2534
 
2535
2535
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
2536
2536
 
2537
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/222259380039589888&quot; &gt;Detalles&lt;/a&gt;
2537
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/222259380039589888&quot; &gt;Detalles&lt;/a&gt;
2538
2538
 
2539
2539
 
2540
2540
  &lt;/span&gt;
@@ -2543,45 +2543,45 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2543
2543
  "
2544
2544
 
2545
2545
 
2546
- data-mentions="TrevorBramble luishj W3CLove"
2546
+ data-mentions="TrevorBramble luishj MarkupValidator"
2547
2547
 
2548
2548
  >
2549
2549
 
2550
-
2550
+
2551
2551
  <i class="dogear"></i>
2552
2552
 
2553
-
2553
+
2554
2554
  <div class="content">
2555
2555
 
2556
-
2556
+
2557
2557
  <div class="stream-item-header">
2558
2558
  <small class="time">
2559
- <a href="/W3CLove/status/222259380039589888" class="tweet-timestamp js-permalink" title="2:22 am - 9 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341825740" data-long-form="true">9 jul</span></a>
2559
+ <a href="/MarkupValidator/status/222259380039589888" class="tweet-timestamp js-permalink" title="2:22 am - 9 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341825740" data-long-form="true">9 jul</span></a>
2560
2560
  </small>
2561
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
2562
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
2563
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
2564
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
2561
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
2562
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
2563
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
2564
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
2565
2565
  </a>
2566
2566
  </div>
2567
2567
 
2568
-
2568
+
2569
2569
  <p class="js-tweet-text">
2570
- <a href="/TrevorBramble" class="twitter-atreply pretty-link" ><s>@</s><b>TrevorBramble</b></a> yeah, <a href="/luishj" class="twitter-atreply pretty-link" ><s>@</s><b>luishj</b></a> did a good job on <a href="/W3CLove" class="twitter-atreply pretty-link" ><s>@</s><b>W3CLove</b></a> :)
2570
+ <a href="/TrevorBramble" class="twitter-atreply pretty-link" ><s>@</s><b>TrevorBramble</b></a> yeah, <a href="/luishj" class="twitter-atreply pretty-link" ><s>@</s><b>luishj</b></a> did a good job on <a href="/MarkupValidator" class="twitter-atreply pretty-link" ><s>@</s><b>MarkupValidator</b></a> :)
2571
2571
  </p>
2572
2572
 
2573
-
2573
+
2574
2574
  <div class="stream-item-footer">
2575
-
2576
-
2577
-
2578
-
2579
-
2575
+
2576
+
2577
+
2578
+
2579
+
2580
2580
  <div class="context">
2581
2581
  </div>
2582
2582
 
2583
-
2584
- <a class="details with-icn js-details" href="/W3CLove/status/222259380039589888">
2583
+
2584
+ <a class="details with-icn js-details" href="/MarkupValidator/status/222259380039589888">
2585
2585
  <span class="details-icon js-icon-container">
2586
2586
  <i class="sm-chat"></i>
2587
2587
  </span>
@@ -2595,13 +2595,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2595
2595
  </b>
2596
2596
  </a>
2597
2597
 
2598
-
2599
-
2600
-
2601
-
2598
+
2599
+
2600
+
2601
+
2602
2602
  <ul class="tweet-actions js-actions">
2603
2603
  <li class="action-reply-container">
2604
-
2604
+
2605
2605
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
2606
2606
  <i class="sm-reply"></i>
2607
2607
  <b>Responder</b>
@@ -2610,8 +2610,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2610
2610
  <li class="action-rt-container">
2611
2611
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
2612
2612
  <i class="sm-rt"></i>
2613
-
2614
-
2613
+
2614
+
2615
2615
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
2616
2616
  </a>
2617
2617
  </li>
@@ -2624,14 +2624,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2624
2624
  <li class="action-fav-container">
2625
2625
  <a class="with-icn js-toggle-fav" href="#">
2626
2626
  <i class="sm-fav"></i>
2627
-
2628
-
2627
+
2628
+
2629
2629
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
2630
2630
  </a>
2631
2631
  </li>
2632
2632
  </ul> </div>
2633
2633
 
2634
-
2634
+
2635
2635
  <div class="expanded-content js-tweet-details-dropdown">
2636
2636
  </div>
2637
2637
  </div>
@@ -2640,25 +2640,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2640
2640
 
2641
2641
  </div>
2642
2642
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="222060807289180161" data-item-type="tweet" id="stream-item-tweet-222060807289180161">
2643
-
2644
2643
 
2645
2644
 
2646
-
2647
2645
 
2648
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2646
+
2647
+
2648
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2649
2649
 
2650
2650
 
2651
2651
 
2652
2652
 
2653
2653
 
2654
2654
 
2655
- "
2655
+ "
2656
2656
  data-tweet-id="222060807289180161"
2657
2657
 
2658
2658
  data-item-id="222060807289180161"
2659
2659
 
2660
2660
 
2661
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
2661
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
2662
2662
 
2663
2663
 
2664
2664
 
@@ -2672,7 +2672,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2672
2672
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
2673
2673
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
2674
2674
  &lt;/div&gt;
2675
-
2675
+
2676
2676
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
2677
2677
  &lt;/div&gt;
2678
2678
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -2681,7 +2681,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2681
2681
 
2682
2682
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
2683
2683
 
2684
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/222060807289180161&quot; &gt;Detalles&lt;/a&gt;
2684
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/222060807289180161&quot; &gt;Detalles&lt;/a&gt;
2685
2685
 
2686
2686
 
2687
2687
  &lt;/span&gt;
@@ -2694,46 +2694,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2694
2694
 
2695
2695
  >
2696
2696
 
2697
-
2697
+
2698
2698
  <i class="dogear"></i>
2699
2699
 
2700
-
2700
+
2701
2701
  <div class="content">
2702
2702
 
2703
-
2703
+
2704
2704
  <div class="stream-item-header">
2705
2705
  <small class="time">
2706
- <a href="/W3CLove/status/222060807289180161" class="tweet-timestamp js-permalink" title="1:13 pm - 8 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341778396" data-long-form="true">8 jul</span></a>
2706
+ <a href="/MarkupValidator/status/222060807289180161" class="tweet-timestamp js-permalink" title="1:13 pm - 8 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341778396" data-long-form="true">8 jul</span></a>
2707
2707
  </small>
2708
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
2709
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
2710
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
2711
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
2708
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
2709
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
2710
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
2711
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
2712
2712
  </a>
2713
2713
  </div>
2714
2714
 
2715
-
2715
+
2716
2716
  <p class="js-tweet-text">
2717
- THANK YOU EVERYONE! <a href="http://t.co/ICDE8DP6" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com/thanks" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com/thanks</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
2717
+ THANK YOU EVERYONE! <a href="http://t.co/ICDE8DP6" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com/thanks" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com/thanks</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
2718
2718
  </p>
2719
2719
 
2720
-
2720
+
2721
2721
  <div class="stream-item-footer">
2722
-
2723
-
2724
-
2725
-
2726
-
2722
+
2723
+
2724
+
2725
+
2726
+
2727
2727
  <div class="context">
2728
2728
  </div>
2729
2729
 
2730
-
2731
- <a class="details with-icn js-details" href="/W3CLove/status/222060807289180161">
2730
+
2731
+ <a class="details with-icn js-details" href="/MarkupValidator/status/222060807289180161">
2732
2732
  <span class="details-icon js-icon-container">
2733
2733
  </span>
2734
2734
  <b>
2735
2735
  <span class="expand-stream-item js-view-details">
2736
-
2736
+
2737
2737
  <span class="expand-action-wrapper">
2738
2738
  Abrir
2739
2739
  </span>
@@ -2744,13 +2744,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2744
2744
  </b>
2745
2745
  </a>
2746
2746
 
2747
-
2748
-
2749
-
2750
-
2747
+
2748
+
2749
+
2750
+
2751
2751
  <ul class="tweet-actions js-actions">
2752
2752
  <li class="action-reply-container">
2753
-
2753
+
2754
2754
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
2755
2755
  <i class="sm-reply"></i>
2756
2756
  <b>Responder</b>
@@ -2759,8 +2759,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2759
2759
  <li class="action-rt-container">
2760
2760
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
2761
2761
  <i class="sm-rt"></i>
2762
-
2763
-
2762
+
2763
+
2764
2764
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
2765
2765
  </a>
2766
2766
  </li>
@@ -2773,14 +2773,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2773
2773
  <li class="action-fav-container">
2774
2774
  <a class="with-icn js-toggle-fav" href="#">
2775
2775
  <i class="sm-fav"></i>
2776
-
2777
-
2776
+
2777
+
2778
2778
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
2779
2779
  </a>
2780
2780
  </li>
2781
2781
  </ul> </div>
2782
2782
 
2783
-
2783
+
2784
2784
  <div class="expanded-content js-tweet-details-dropdown">
2785
2785
  </div>
2786
2786
  </div>
@@ -2789,25 +2789,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2789
2789
 
2790
2790
  </div>
2791
2791
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="222041303058362369" data-item-type="tweet" id="stream-item-tweet-222041303058362369">
2792
-
2793
2792
 
2794
2793
 
2795
-
2796
2794
 
2797
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2795
+
2796
+
2797
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2798
2798
 
2799
2799
 
2800
2800
 
2801
2801
 
2802
2802
  with-social-proof
2803
2803
 
2804
- "
2804
+ "
2805
2805
  data-tweet-id="222041303058362369"
2806
2806
 
2807
2807
  data-item-id="222041303058362369"
2808
2808
 
2809
2809
 
2810
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
2810
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
2811
2811
 
2812
2812
 
2813
2813
 
@@ -2821,7 +2821,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2821
2821
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
2822
2822
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container already-open&quot;&gt;
2823
2823
  &lt;/div&gt;
2824
-
2824
+
2825
2825
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
2826
2826
  &lt;/div&gt;
2827
2827
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -2830,7 +2830,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2830
2830
 
2831
2831
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
2832
2832
 
2833
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/222041303058362369&quot; &gt;Detalles&lt;/a&gt;
2833
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/222041303058362369&quot; &gt;Detalles&lt;/a&gt;
2834
2834
 
2835
2835
 
2836
2836
  &lt;/span&gt;
@@ -2843,46 +2843,46 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2843
2843
 
2844
2844
  >
2845
2845
 
2846
-
2846
+
2847
2847
  <i class="dogear"></i>
2848
2848
 
2849
-
2849
+
2850
2850
  <div class="content">
2851
2851
 
2852
-
2852
+
2853
2853
  <div class="stream-item-header">
2854
2854
  <small class="time">
2855
- <a href="/W3CLove/status/222041303058362369" class="tweet-timestamp js-permalink" title="11:55 am - 8 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341773746" data-long-form="true">8 jul</span></a>
2855
+ <a href="/MarkupValidator/status/222041303058362369" class="tweet-timestamp js-permalink" title="11:55 am - 8 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341773746" data-long-form="true">8 jul</span></a>
2856
2856
  </small>
2857
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
2858
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
2859
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
2860
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
2857
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
2858
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
2859
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
2860
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
2861
2861
  </a>
2862
2862
  </div>
2863
2863
 
2864
-
2864
+
2865
2865
  <p class="js-tweet-text">
2866
- we&#39;ve got a brand new design on <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://w3clove.com" ><span class="invisible">http://</span><span class="js-display-url">w3clove.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a> , come visit! Thanks <a href="/luishj" class="twitter-atreply pretty-link" ><s>@</s><b>luishj</b></a>
2866
+ we&#39;ve got a brand new design on <a href="http://t.co/YIzXBTlD" class="twitter-timeline-link" target="_blank" data-expanded-url="http://markupvalidator.com" ><span class="invisible">http://</span><span class="js-display-url">markupvalidator.com</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a> , come visit! Thanks <a href="/luishj" class="twitter-atreply pretty-link" ><s>@</s><b>luishj</b></a>
2867
2867
  </p>
2868
2868
 
2869
-
2869
+
2870
2870
  <div class="stream-item-footer">
2871
-
2872
-
2873
-
2874
-
2875
-
2871
+
2872
+
2873
+
2874
+
2875
+
2876
2876
  <div class="context">
2877
2877
  </div>
2878
2878
 
2879
-
2880
- <a class="details with-icn js-details" href="/W3CLove/status/222041303058362369">
2879
+
2880
+ <a class="details with-icn js-details" href="/MarkupValidator/status/222041303058362369">
2881
2881
  <span class="details-icon js-icon-container">
2882
2882
  </span>
2883
2883
  <b>
2884
2884
  <span class="expand-stream-item js-view-details">
2885
-
2885
+
2886
2886
  <span class="expand-action-wrapper">
2887
2887
  Abrir
2888
2888
  </span>
@@ -2893,13 +2893,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2893
2893
  </b>
2894
2894
  </a>
2895
2895
 
2896
-
2897
-
2898
-
2899
-
2896
+
2897
+
2898
+
2899
+
2900
2900
  <ul class="tweet-actions js-actions">
2901
2901
  <li class="action-reply-container">
2902
-
2902
+
2903
2903
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
2904
2904
  <i class="sm-reply"></i>
2905
2905
  <b>Responder</b>
@@ -2908,8 +2908,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2908
2908
  <li class="action-rt-container">
2909
2909
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
2910
2910
  <i class="sm-rt"></i>
2911
-
2912
-
2911
+
2912
+
2913
2913
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
2914
2914
  </a>
2915
2915
  </li>
@@ -2922,14 +2922,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2922
2922
  <li class="action-fav-container">
2923
2923
  <a class="with-icn js-toggle-fav" href="#">
2924
2924
  <i class="sm-fav"></i>
2925
-
2926
-
2925
+
2926
+
2927
2927
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
2928
2928
  </a>
2929
2929
  </li>
2930
2930
  </ul> </div>
2931
2931
 
2932
-
2932
+
2933
2933
  <div class="expanded-content js-tweet-details-dropdown">
2934
2934
  </div>
2935
2935
  </div>
@@ -2938,25 +2938,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2938
2938
 
2939
2939
  </div>
2940
2940
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="221360578751496192" data-item-type="tweet" id="stream-item-tweet-221360578751496192">
2941
-
2942
2941
 
2943
2942
 
2944
-
2945
2943
 
2946
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2944
+
2945
+
2946
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
2947
2947
 
2948
2948
 
2949
2949
 
2950
2950
 
2951
2951
 
2952
2952
 
2953
- "
2953
+ "
2954
2954
  data-tweet-id="221360578751496192"
2955
2955
 
2956
2956
  data-item-id="221360578751496192"
2957
2957
 
2958
2958
 
2959
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
2959
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
2960
2960
 
2961
2961
 
2962
2962
 
@@ -2970,7 +2970,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2970
2970
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
2971
2971
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
2972
2972
  &lt;/div&gt;
2973
-
2973
+
2974
2974
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
2975
2975
  &lt;/div&gt;
2976
2976
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -2979,7 +2979,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2979
2979
 
2980
2980
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
2981
2981
 
2982
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/221360578751496192&quot; &gt;Detalles&lt;/a&gt;
2982
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/221360578751496192&quot; &gt;Detalles&lt;/a&gt;
2983
2983
 
2984
2984
 
2985
2985
  &lt;/span&gt;
@@ -2992,41 +2992,41 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
2992
2992
 
2993
2993
  >
2994
2994
 
2995
-
2995
+
2996
2996
  <i class="dogear"></i>
2997
2997
 
2998
-
2998
+
2999
2999
  <div class="content">
3000
3000
 
3001
-
3001
+
3002
3002
  <div class="stream-item-header">
3003
3003
  <small class="time">
3004
- <a href="/W3CLove/status/221360578751496192" class="tweet-timestamp js-permalink" title="2:50 pm - 6 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341611449" data-long-form="true">6 jul</span></a>
3004
+ <a href="/MarkupValidator/status/221360578751496192" class="tweet-timestamp js-permalink" title="2:50 pm - 6 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341611449" data-long-form="true">6 jul</span></a>
3005
3005
  </small>
3006
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
3007
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
3008
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
3009
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
3006
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
3007
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
3008
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
3009
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
3010
3010
  </a>
3011
3011
  </div>
3012
3012
 
3013
-
3013
+
3014
3014
  <p class="js-tweet-text">
3015
3015
  <a href="/mgifford" class="twitter-atreply pretty-link" ><s>@</s><b>mgifford</b></a> BTW, we&#39;re rolling out a new version next week. Join the newsletter if you want to be up to date! <a href="http://t.co/dtHqsedf" class="twitter-timeline-link" target="_blank" data-expanded-url="http://eepurl.com/i9J4z" ><span class="invisible">http://</span><span class="js-display-url">eepurl.com/i9J4z</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
3016
3016
  </p>
3017
3017
 
3018
-
3018
+
3019
3019
  <div class="stream-item-footer">
3020
-
3021
-
3022
-
3023
-
3024
-
3020
+
3021
+
3022
+
3023
+
3024
+
3025
3025
  <div class="context">
3026
3026
  </div>
3027
3027
 
3028
-
3029
- <a class="details with-icn js-details" href="/W3CLove/status/221360578751496192">
3028
+
3029
+ <a class="details with-icn js-details" href="/MarkupValidator/status/221360578751496192">
3030
3030
  <span class="details-icon js-icon-container">
3031
3031
  <i class="sm-chat"></i>
3032
3032
  </span>
@@ -3040,13 +3040,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3040
3040
  </b>
3041
3041
  </a>
3042
3042
 
3043
-
3044
-
3045
-
3046
-
3043
+
3044
+
3045
+
3046
+
3047
3047
  <ul class="tweet-actions js-actions">
3048
3048
  <li class="action-reply-container">
3049
-
3049
+
3050
3050
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
3051
3051
  <i class="sm-reply"></i>
3052
3052
  <b>Responder</b>
@@ -3055,8 +3055,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3055
3055
  <li class="action-rt-container">
3056
3056
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
3057
3057
  <i class="sm-rt"></i>
3058
-
3059
-
3058
+
3059
+
3060
3060
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
3061
3061
  </a>
3062
3062
  </li>
@@ -3069,14 +3069,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3069
3069
  <li class="action-fav-container">
3070
3070
  <a class="with-icn js-toggle-fav" href="#">
3071
3071
  <i class="sm-fav"></i>
3072
-
3073
-
3072
+
3073
+
3074
3074
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
3075
3075
  </a>
3076
3076
  </li>
3077
3077
  </ul> </div>
3078
3078
 
3079
-
3079
+
3080
3080
  <div class="expanded-content js-tweet-details-dropdown">
3081
3081
  </div>
3082
3082
  </div>
@@ -3085,25 +3085,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3085
3085
 
3086
3086
  </div>
3087
3087
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="221360164320710656" data-item-type="tweet" id="stream-item-tweet-221360164320710656">
3088
-
3089
3088
 
3090
3089
 
3091
-
3092
3090
 
3093
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
3094
3091
 
3095
3092
 
3093
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
3094
+
3096
3095
 
3097
3096
 
3098
3097
 
3099
3098
 
3100
- "
3099
+
3100
+ "
3101
3101
  data-tweet-id="221360164320710656"
3102
3102
 
3103
3103
  data-item-id="221360164320710656"
3104
3104
 
3105
3105
 
3106
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
3106
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
3107
3107
 
3108
3108
 
3109
3109
 
@@ -3117,7 +3117,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3117
3117
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
3118
3118
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container &quot;&gt;
3119
3119
  &lt;/div&gt;
3120
-
3120
+
3121
3121
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
3122
3122
  &lt;/div&gt;
3123
3123
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -3126,7 +3126,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3126
3126
 
3127
3127
  &lt;span class=&quot;tweet-source&quot;&gt;vía web&lt;/span&gt;
3128
3128
 
3129
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/221360164320710656&quot; &gt;Detalles&lt;/a&gt;
3129
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/221360164320710656&quot; &gt;Detalles&lt;/a&gt;
3130
3130
 
3131
3131
 
3132
3132
  &lt;/span&gt;
@@ -3139,41 +3139,41 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3139
3139
 
3140
3140
  >
3141
3141
 
3142
-
3142
+
3143
3143
  <i class="dogear"></i>
3144
3144
 
3145
-
3145
+
3146
3146
  <div class="content">
3147
3147
 
3148
-
3148
+
3149
3149
  <div class="stream-item-header">
3150
3150
  <small class="time">
3151
- <a href="/W3CLove/status/221360164320710656" class="tweet-timestamp js-permalink" title="2:49 pm - 6 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341611350" data-long-form="true">6 jul</span></a>
3151
+ <a href="/MarkupValidator/status/221360164320710656" class="tweet-timestamp js-permalink" title="2:49 pm - 6 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341611350" data-long-form="true">6 jul</span></a>
3152
3152
  </small>
3153
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
3154
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
3155
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
3156
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
3153
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
3154
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
3155
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
3156
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
3157
3157
  </a>
3158
3158
  </div>
3159
3159
 
3160
-
3160
+
3161
3161
  <p class="js-tweet-text">
3162
3162
  <a href="/mgifford" class="twitter-atreply pretty-link" ><s>@</s><b>mgifford</b></a> glad you like the service! As for the validations, we run them using the official validator, which has an experimental html5 check
3163
3163
  </p>
3164
3164
 
3165
-
3165
+
3166
3166
  <div class="stream-item-footer">
3167
-
3168
-
3169
-
3170
-
3171
-
3167
+
3168
+
3169
+
3170
+
3171
+
3172
3172
  <div class="context">
3173
3173
  </div>
3174
3174
 
3175
-
3176
- <a class="details with-icn js-details" href="/W3CLove/status/221360164320710656">
3175
+
3176
+ <a class="details with-icn js-details" href="/MarkupValidator/status/221360164320710656">
3177
3177
  <span class="details-icon js-icon-container">
3178
3178
  <i class="sm-chat"></i>
3179
3179
  </span>
@@ -3187,13 +3187,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3187
3187
  </b>
3188
3188
  </a>
3189
3189
 
3190
-
3191
-
3192
-
3193
-
3190
+
3191
+
3192
+
3193
+
3194
3194
  <ul class="tweet-actions js-actions">
3195
3195
  <li class="action-reply-container">
3196
-
3196
+
3197
3197
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
3198
3198
  <i class="sm-reply"></i>
3199
3199
  <b>Responder</b>
@@ -3202,8 +3202,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3202
3202
  <li class="action-rt-container">
3203
3203
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
3204
3204
  <i class="sm-rt"></i>
3205
-
3206
-
3205
+
3206
+
3207
3207
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
3208
3208
  </a>
3209
3209
  </li>
@@ -3216,14 +3216,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3216
3216
  <li class="action-fav-container">
3217
3217
  <a class="with-icn js-toggle-fav" href="#">
3218
3218
  <i class="sm-fav"></i>
3219
-
3220
-
3219
+
3220
+
3221
3221
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
3222
3222
  </a>
3223
3223
  </li>
3224
3224
  </ul> </div>
3225
3225
 
3226
-
3226
+
3227
3227
  <div class="expanded-content js-tweet-details-dropdown">
3228
3228
  </div>
3229
3229
  </div>
@@ -3232,19 +3232,19 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3232
3232
 
3233
3233
  </div>
3234
3234
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="221152366878134272" data-item-type="tweet" id="stream-item-tweet-221152366878134272">
3235
-
3236
3235
 
3237
3236
 
3238
-
3239
3237
 
3240
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
3238
+
3239
+
3240
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
3241
3241
 
3242
3242
 
3243
3243
 
3244
3244
 
3245
3245
  with-social-proof
3246
3246
 
3247
- "
3247
+ "
3248
3248
  data-tweet-id="221152366878134272"
3249
3249
 
3250
3250
  data-item-id="221152366878134272"
@@ -3264,7 +3264,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3264
3264
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
3265
3265
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container already-open&quot;&gt;
3266
3266
  &lt;/div&gt;
3267
-
3267
+
3268
3268
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
3269
3269
  &lt;/div&gt;
3270
3270
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -3286,13 +3286,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3286
3286
 
3287
3287
  >
3288
3288
 
3289
-
3289
+
3290
3290
  <i class="dogear"></i>
3291
3291
 
3292
-
3292
+
3293
3293
  <div class="content">
3294
3294
 
3295
-
3295
+
3296
3296
  <div class="stream-item-header">
3297
3297
  <small class="time">
3298
3298
  <a href="/jaimeiniesta/status/221152366878134272" class="tweet-timestamp js-permalink" title="1:03 am - 6 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341561807" data-long-form="true">6 jul</span></a>
@@ -3304,30 +3304,30 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3304
3304
  </a>
3305
3305
  </div>
3306
3306
 
3307
-
3307
+
3308
3308
  <p class="js-tweet-text">
3309
3309
  we&#39;re trying to install the W3C Validator on Heroku - help us raise funds for this open source project! <a href="http://t.co/30LsSXxA" class="twitter-timeline-link" target="_blank" data-expanded-url="http://gun.io/open/61/" ><span class="invisible">http://</span><span class="js-display-url">gun.io/open/61/</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible">&nbsp;</span></span></a>
3310
3310
  </p>
3311
3311
 
3312
-
3312
+
3313
3313
  <div class="stream-item-footer">
3314
-
3315
-
3316
-
3317
-
3318
-
3314
+
3315
+
3316
+
3317
+
3318
+
3319
3319
  <div class="context">
3320
-
3321
- <span class="with-icn"><i class="badge-retweeted"></i><span class="js-retweet-text">Retwitteado por <a class="pretty-link js-user-profile-link" href="/jaimeiniesta" data-user-id="318431467"><b>W3CLove App</b></a></span></span>
3320
+
3321
+ <span class="with-icn"><i class="badge-retweeted"></i><span class="js-retweet-text">Retwitteado por <a class="pretty-link js-user-profile-link" href="/jaimeiniesta" data-user-id="318431467"><b>MarkupValidator App</b></a></span></span>
3322
3322
  </div>
3323
3323
 
3324
-
3324
+
3325
3325
  <a class="details with-icn js-details" href="/jaimeiniesta/status/221152366878134272">
3326
3326
  <span class="details-icon js-icon-container">
3327
3327
  </span>
3328
3328
  <b>
3329
3329
  <span class="expand-stream-item js-view-details">
3330
-
3330
+
3331
3331
  <span class="expand-action-wrapper">
3332
3332
  Abrir
3333
3333
  </span>
@@ -3338,13 +3338,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3338
3338
  </b>
3339
3339
  </a>
3340
3340
 
3341
-
3342
-
3343
-
3344
-
3341
+
3342
+
3343
+
3344
+
3345
3345
  <ul class="tweet-actions js-actions">
3346
3346
  <li class="action-reply-container">
3347
-
3347
+
3348
3348
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
3349
3349
  <i class="sm-reply"></i>
3350
3350
  <b>Responder</b>
@@ -3353,8 +3353,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3353
3353
  <li class="action-rt-container">
3354
3354
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
3355
3355
  <i class="sm-rt"></i>
3356
-
3357
-
3356
+
3357
+
3358
3358
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
3359
3359
  </a>
3360
3360
  </li>
@@ -3367,14 +3367,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3367
3367
  <li class="action-fav-container">
3368
3368
  <a class="with-icn js-toggle-fav" href="#">
3369
3369
  <i class="sm-fav"></i>
3370
-
3371
-
3370
+
3371
+
3372
3372
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
3373
3373
  </a>
3374
3374
  </li>
3375
3375
  </ul> </div>
3376
3376
 
3377
-
3377
+
3378
3378
  <div class="expanded-content js-tweet-details-dropdown">
3379
3379
  </div>
3380
3380
  </div>
@@ -3383,25 +3383,25 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3383
3383
 
3384
3384
  </div>
3385
3385
  <div class="js-stream-item stream-item stream-item expanding-stream-item" data-item-id="220643890242392065" data-item-type="tweet" id="stream-item-tweet-220643890242392065">
3386
-
3387
3386
 
3388
3387
 
3389
-
3390
3388
 
3391
- <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
3389
+
3390
+
3391
+ <div class="tweet original-tweet js-stream-tweet js-actionable-tweet js-hover js-profile-popup-actionable js-original-tweet
3392
3392
 
3393
3393
 
3394
3394
 
3395
3395
 
3396
3396
  with-social-proof
3397
3397
 
3398
- "
3398
+ "
3399
3399
  data-tweet-id="220643890242392065"
3400
3400
 
3401
3401
  data-item-id="220643890242392065"
3402
3402
 
3403
3403
 
3404
- data-screen-name="W3CLove" data-name="W3CLove App" data-user-id="318431467"
3404
+ data-screen-name="MarkupValidator" data-name="MarkupValidator App" data-user-id="318431467"
3405
3405
 
3406
3406
 
3407
3407
 
@@ -3415,7 +3415,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3415
3415
  &lt;div class=&quot;js-machine-translated-tweet-container&quot;&gt;&lt;/div&gt;
3416
3416
  &lt;div class=&quot;js-tweet-stats-container tweet-stats-container already-open&quot;&gt;
3417
3417
  &lt;/div&gt;
3418
-
3418
+
3419
3419
  &lt;div class=&quot;geo-container tweet-geo-text&quot;&gt;
3420
3420
  &lt;/div&gt;
3421
3421
  &lt;div class=&quot;client-and-actions&quot;&gt;
@@ -3424,7 +3424,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3424
3424
 
3425
3425
  &lt;span class=&quot;tweet-source&quot;&gt;vía &lt;a href=&quot;http://twitter.com/#!/download/ipad&quot; rel=&quot;nofollow&quot;&gt;Twitter for iPad&lt;/a&gt;&lt;/span&gt;
3426
3426
 
3427
- &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/W3CLove/status/220643890242392065&quot; &gt;Detalles&lt;/a&gt;
3427
+ &amp;middot; &lt;a class=&quot;permalink-link js-permalink&quot; href=&quot;/MarkupValidator/status/220643890242392065&quot; &gt;Detalles&lt;/a&gt;
3428
3428
 
3429
3429
 
3430
3430
  &lt;/span&gt;
@@ -3433,50 +3433,50 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3433
3433
  "
3434
3434
 
3435
3435
 
3436
- data-mentions="W3CLove"
3436
+ data-mentions="MarkupValidator"
3437
3437
 
3438
3438
  >
3439
3439
 
3440
-
3440
+
3441
3441
  <i class="dogear"></i>
3442
3442
 
3443
-
3443
+
3444
3444
  <div class="content">
3445
3445
 
3446
-
3446
+
3447
3447
  <div class="stream-item-header">
3448
3448
  <small class="time">
3449
- <a href="/W3CLove/status/220643890242392065" class="tweet-timestamp js-permalink" title="3:22 pm - 4 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341440577" data-long-form="true">4 jul</span></a>
3449
+ <a href="/MarkupValidator/status/220643890242392065" class="tweet-timestamp js-permalink" title="3:22 pm - 4 jul 12" ><span class="_timestamp js-short-timestamp " data-time="1341440577" data-long-form="true">4 jul</span></a>
3450
3450
  </small>
3451
- <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/W3CLove" data-user-id="318431467">
3452
- <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="W3CLove App">
3453
- <strong class="fullname js-action-profile-name show-popup-with-id">W3CLove App</strong>
3454
- <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>W3CLove</b></span>
3451
+ <a class="account-group js-account-group js-action-profile js-user-profile-link" href="/MarkupValidator" data-user-id="318431467">
3452
+ <img class="avatar js-action-profile-avatar" src="https://twimg0-a.akamaihd.net/profile_images/2380086215/fcu46ozay5f5al9kdfvq_normal.png" alt="MarkupValidator App">
3453
+ <strong class="fullname js-action-profile-name show-popup-with-id">MarkupValidator App</strong>
3454
+ <span>&rlm;</span><span class="username js-action-profile-name"><s>@</s><b>MarkupValidator</b></span>
3455
3455
  </a>
3456
3456
  </div>
3457
3457
 
3458
-
3458
+
3459
3459
  <p class="js-tweet-text">
3460
- the new version of <a href="/W3CLove" class="twitter-atreply pretty-link" ><s>@</s><b>W3CLove</b></a> that we&#39;re working on is able to validate 100 pages in 30 seconds. How cool is that?
3460
+ the new version of <a href="/MarkupValidator" class="twitter-atreply pretty-link" ><s>@</s><b>MarkupValidator</b></a> that we&#39;re working on is able to validate 100 pages in 30 seconds. How cool is that?
3461
3461
  </p>
3462
3462
 
3463
-
3463
+
3464
3464
  <div class="stream-item-footer">
3465
-
3466
-
3467
-
3468
-
3469
-
3465
+
3466
+
3467
+
3468
+
3469
+
3470
3470
  <div class="context">
3471
3471
  </div>
3472
3472
 
3473
-
3474
- <a class="details with-icn js-details" href="/W3CLove/status/220643890242392065">
3473
+
3474
+ <a class="details with-icn js-details" href="/MarkupValidator/status/220643890242392065">
3475
3475
  <span class="details-icon js-icon-container">
3476
3476
  </span>
3477
3477
  <b>
3478
3478
  <span class="expand-stream-item js-view-details">
3479
-
3479
+
3480
3480
  <span class="expand-action-wrapper">
3481
3481
  Abrir
3482
3482
  </span>
@@ -3487,13 +3487,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3487
3487
  </b>
3488
3488
  </a>
3489
3489
 
3490
-
3491
-
3492
-
3493
-
3490
+
3491
+
3492
+
3493
+
3494
3494
  <ul class="tweet-actions js-actions">
3495
3495
  <li class="action-reply-container">
3496
-
3496
+
3497
3497
  <a class="with-icn js-action-reply" data-modal="tweet-reply" href="#" title="Responder">
3498
3498
  <i class="sm-reply"></i>
3499
3499
  <b>Responder</b>
@@ -3502,8 +3502,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3502
3502
  <li class="action-rt-container">
3503
3503
  <a class="with-icn js-toggle-rt" data-modal="tweet-retweet" href="#">
3504
3504
  <i class="sm-rt"></i>
3505
-
3506
-
3505
+
3506
+
3507
3507
  <b><span class="undo-retweet" title="Deshacer Retweet">Retwitteado</span><span class="retweet" title="Retwittear">Retwittear</span></b>
3508
3508
  </a>
3509
3509
  </li>
@@ -3516,14 +3516,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3516
3516
  <li class="action-fav-container">
3517
3517
  <a class="with-icn js-toggle-fav" href="#">
3518
3518
  <i class="sm-fav"></i>
3519
-
3520
-
3519
+
3520
+
3521
3521
  <b><span class="unfavorite" title="Desmarcar favorito">Favorito</span><span class="favorite" title="Favorito">Favorito</span></b>
3522
3522
  </a>
3523
3523
  </li>
3524
3524
  </ul> </div>
3525
3525
 
3526
-
3526
+
3527
3527
  <div class="expanded-content js-tweet-details-dropdown">
3528
3528
  </div>
3529
3529
  </div>
@@ -3536,7 +3536,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3536
3536
  <div class="stream-end">
3537
3537
  <div class="stream-end-inner">
3538
3538
  <i class="bird-etched"></i>
3539
- <p class="empty-text">@W3CLove no ha twitteado todavía.</p>
3539
+ <p class="empty-text">@MarkupValidator no ha twitteado todavía.</p>
3540
3540
  <button type='button' class='btn-link back-to-top hidden'>Volver arriba &uarr;</button> </div>
3541
3541
  </div>
3542
3542
  <div class="stream-loading">
@@ -3566,7 +3566,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3566
3566
  </div>
3567
3567
  <div class="modal-body">
3568
3568
  <p class="sensitive-title">Esto ya ha sido marcado como contenido sensible.</p>
3569
-
3569
+
3570
3570
  <label class="checkbox" for="sensitive-settings-checkbox">
3571
3571
  <input type="checkbox" id="sensitive-settings-checkbox" value="settings">
3572
3572
  Cambiar mi configuración para avisarme antes de mostrarme contenido multimedia que pueda contener material sensible.
@@ -3579,7 +3579,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3579
3579
  <div class="modal-footer">
3580
3580
  <button id="submit_flag_confirmation" type="button" class="btn">Enviar</button>
3581
3581
  <button id="cancel_flag_confirmation" type="button" class="btn primary-btn">Cancelar</button>
3582
-
3582
+
3583
3583
  <div class="sensitive-confirmation">
3584
3584
  <a class="sensitive-learn-more" target="_blank" href="//support.twitter.com/articles/20069937">Aprende más acerca de etiquetar multimedia</a>
3585
3585
  </div>
@@ -3593,27 +3593,27 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3593
3593
  </div>
3594
3594
  </div>
3595
3595
 
3596
-
3596
+
3597
3597
  <div class="modal-overlay"></div>
3598
-
3598
+
3599
3599
  <div class="hidden-elements">
3600
3600
  <div id="flash-preload"></div>
3601
3601
  <iframe class="tweet-post-iframe" name="tweet-post-iframe"></iframe>
3602
-
3602
+
3603
3603
  </div>
3604
-
3604
+
3605
3605
  <div id="dm_dialog" class="modal-container dm-conversation-list">
3606
3606
  <div class="close-modal-background-target"></div>
3607
3607
  <div class="modal draggable twttr-dialog dm-dialog">
3608
3608
  <div id="dm_dialog_conversation_list" class="modal-content">
3609
-
3609
+
3610
3610
  <div class="twttr-dialog-header modal-header">
3611
3611
  <h3>Mensajes directos</h3>
3612
3612
  <a class="btn dm-new-button dm-header-new" href="#">Mensaje nuevo</a>
3613
3613
  <div class="twttr-dialog-close"><b>&times;</b></div>
3614
3614
  </div>
3615
-
3616
-
3615
+
3616
+
3617
3617
  <div class="twttr-dialog-inside">
3618
3618
  <div class="twttr-dialog-body clearfix">
3619
3619
  <div class="dm-error js-dm-error">
@@ -3630,20 +3630,20 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3630
3630
  </div> </ul>
3631
3631
  </div>
3632
3632
  </div>
3633
-
3633
+
3634
3634
  <div class="twttr-dialog-footer">
3635
3635
  Sugerencia: puedes enviar un mensaje a cualquiera que te siga. <a href="http://support.twitter.com/groups/31-twitter-basics/topics/109-tweets-messages/articles/14606-what-is-a-direct-message-dm" target="_blank" class="learn-more">Aprendé más</a>
3636
3636
  </div>
3637
3637
  </div>
3638
3638
  </div>
3639
3639
  </div> <div id="dm_dialog_conversation" class="modal-content">
3640
-
3640
+
3641
3641
  <div class="twttr-dialog-header modal-header">
3642
3642
  <h3><a class="js-dm-header-title" href="#">Mensajes directos</a> › con <span class="dm_dialog_real_name"></span></h3>
3643
3643
  <div class="twttr-dialog-close"><b>&times;</b></div>
3644
3644
  </div>
3645
-
3646
-
3645
+
3646
+
3647
3647
  <div class="twttr-dialog-inside">
3648
3648
  <div class="twttr-dialog-body clearfix">
3649
3649
  <div class="dm-error js-dm-error">
@@ -3669,19 +3669,19 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3669
3669
  <button type="button" class="btn js-prompt-cancel">Cancelar</button>
3670
3670
  </div>
3671
3671
  </form> </div>
3672
-
3672
+
3673
3673
  <div class="twttr-dialog-footer">
3674
3674
  Sugerencia: puedes enviar un mensaje a cualquiera que te siga. <a href="http://support.twitter.com/groups/31-twitter-basics/topics/109-tweets-messages/articles/14606-what-is-a-direct-message-dm" target="_blank" class="learn-more">Aprendé más</a>
3675
3675
  </div>
3676
3676
  </div>
3677
3677
  </div> <div id="dm_dialog_new" class="modal-content">
3678
-
3678
+
3679
3679
  <div class="twttr-dialog-header modal-header">
3680
3680
  <h3><a href="#">Mensajes directos</a> › Nuevo</h3>
3681
3681
  <div class="twttr-dialog-close"><b>&rsaquo;</b></div>
3682
3682
  </div>
3683
-
3684
-
3683
+
3684
+
3685
3685
  <div class="twttr-dialog-inside">
3686
3686
  <div class="twttr-dialog-body clearfix">
3687
3687
  <div class="dm-dialog-content">
@@ -3695,7 +3695,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3695
3695
  <span class="pretty-link"><s>@</s><b class="username"></b></span>
3696
3696
  </li>
3697
3697
  </ul> </div>
3698
-
3698
+
3699
3699
  <div class="dm-convo-placeholder">
3700
3700
  <div class="dm-error js-dm-error">
3701
3701
  <a href="#" class="js-dismiss">
@@ -3703,9 +3703,9 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3703
3703
  </a>
3704
3704
  <span class="dm-error-text"></span>
3705
3705
  </div> </div>
3706
-
3706
+
3707
3707
  </div>
3708
-
3708
+
3709
3709
  <form class="dm-tweetbox tweet-form">
3710
3710
  <div class="tweet-content">
3711
3711
  <label class="hidden-elements" for="tweet-box-1343067691">Texto del Tweet</label>
@@ -3729,7 +3729,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3729
3729
  </div>
3730
3730
  </div> </div>
3731
3731
  </div>
3732
-
3732
+
3733
3733
  <div id="goto-user-dialog" class="modal-container">
3734
3734
  <div class="modal modal-small draggable">
3735
3735
  <div class="modal-content">
@@ -3757,27 +3757,27 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3757
3757
  </div>
3758
3758
  </div>
3759
3759
 
3760
-
3761
-
3760
+
3761
+
3762
3762
  <div id="retweet-tweet-dialog" class="modal-container">
3763
3763
  <div class="close-modal-background-target"></div>
3764
3764
  <div class="modal draggable">
3765
3765
  <div class="modal-content">
3766
3766
  <button class="modal-btn modal-close"><i class="close-medium"><span class="hidden-elements">Cerrar</span></i></button>
3767
-
3767
+
3768
3768
  <div class="modal-header">
3769
-
3769
+
3770
3770
  <h3 class="modal-title">¿Retwittear a tus seguidores?</h3>
3771
-
3771
+
3772
3772
  </div>
3773
-
3773
+
3774
3774
  <div class="modal-body modal-tweet"></div>
3775
-
3775
+
3776
3776
  <div class="modal-footer">
3777
3777
  <button class="btn cancel-action">Cancelar</button>
3778
-
3778
+
3779
3779
  <button class="btn primary-btn retweet-action">Retwittear</button>
3780
-
3780
+
3781
3781
  </div>
3782
3782
  </div>
3783
3783
  </div>
@@ -3787,13 +3787,13 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3787
3787
  <div class="modal draggable">
3788
3788
  <div class="modal-content">
3789
3789
  <button class="modal-btn modal-close"><i class="close-medium"><span class="hidden-elements">Cerrar</span></i></button>
3790
-
3790
+
3791
3791
  <div class="modal-header">
3792
3792
  <h3 class="modal-title">¿Estás seguro de que quieres eliminar este Tweet?</h3>
3793
3793
  </div>
3794
-
3794
+
3795
3795
  <div class="modal-body modal-tweet"></div>
3796
-
3796
+
3797
3797
  <div class="modal-footer">
3798
3798
  <button class="btn cancel-action">Cancelar</button>
3799
3799
  <button class="btn primary-btn delete-action">Borrar</button>
@@ -3802,19 +3802,19 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3802
3802
  </div>
3803
3803
  </div>
3804
3804
 
3805
-
3805
+
3806
3806
  <div id="keyboard-shortcut-dialog" class="modal-container">
3807
3807
  <div class="close-modal-background-target"></div>
3808
3808
  <div class="modal modal-large draggable">
3809
3809
  <div class="modal-content">
3810
3810
  <button type="button" class="modal-btn modal-close js-dimiss"><i class="close-medium"><span class="hidden-elements">Cerrar</span></i></button>
3811
3811
 
3812
-
3812
+
3813
3813
  <div class="modal-header">
3814
3814
  <h3 class="modal-title">Teclas rápidas</h3>
3815
3815
  </div>
3816
3816
 
3817
-
3817
+
3818
3818
  <div class="modal-body">
3819
3819
 
3820
3820
  <div class="keyboard-shortcuts clearfix" id="keyboard-shortcut-menu">
@@ -3879,10 +3879,10 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3879
3879
 
3880
3880
 
3881
3881
 
3882
-
3883
-
3884
-
3885
-
3882
+
3883
+
3884
+
3885
+
3886
3886
  <div id="geo-disabled-dropdown">
3887
3887
  <ul class="dropdown-menu" tabindex="-1">
3888
3888
  <li class="dropdown-caret">
@@ -3903,7 +3903,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3903
3903
  </li>
3904
3904
  </ul>
3905
3905
  </div>
3906
-
3906
+
3907
3907
  <div id="geo-enabled-dropdown">
3908
3908
  <ul class="dropdown-menu" tabindex="-1">
3909
3909
  <li class="dropdown-caret">
@@ -3920,8 +3920,8 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3920
3920
  </li>
3921
3921
  </ul>
3922
3922
  </div>
3923
-
3924
-
3923
+
3924
+
3925
3925
  <div id="profile_popup" class="modal-container">
3926
3926
  <div class="close-modal-background-target"></div>
3927
3927
  <div class="modal modal-small draggable">
@@ -3930,11 +3930,11 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3930
3930
  <div class="modal-header">
3931
3931
  <h3 class="modal-title">Resumen del perfil</h3>
3932
3932
  </div>
3933
-
3933
+
3934
3934
  <div class="modal-body profile-modal">
3935
-
3935
+
3936
3936
  </div>
3937
-
3937
+
3938
3938
  <div class="loading">
3939
3939
  <img src="https://twimg0-a.akamaihd.net/a/1342841381/images/bigger_spinner.gif">
3940
3940
  </div>
@@ -3964,7 +3964,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3964
3964
  <h3 class="modal-title">Crear nueva lista</h3>
3965
3965
  </div>
3966
3966
  <div class="modal-body">
3967
-
3967
+
3968
3968
  <div class="list-editor">
3969
3969
  <div class="field">
3970
3970
  <label for="list-name">Nombre de la lista</label>
@@ -3975,14 +3975,14 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3975
3975
  <span></span>
3976
3976
  </div>
3977
3977
  <hr/>
3978
-
3978
+
3979
3979
  <div class="field">
3980
3980
  <label for="description">Descripción</label>
3981
3981
  <textarea name="description"></textarea>
3982
3982
  <span class="help-text">Menos de 100 caracteres, opcional</span>
3983
3983
  </div>
3984
3984
  <hr/>
3985
-
3985
+
3986
3986
  <div class="field">
3987
3987
  <label for="mode">Privacidad</label>
3988
3988
  <div class="options">
@@ -3997,11 +3997,11 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
3997
3997
  </div>
3998
3998
  </div>
3999
3999
  <hr/>
4000
-
4000
+
4001
4001
  <div class="list-editor-save">
4002
4002
  <div class="button btn btn-primary update-list-button" data-list-id="150619680">Guardar lista</div>
4003
4003
  </div>
4004
-
4004
+
4005
4005
  </div> </div>
4006
4006
  </div>
4007
4007
  </div>
@@ -4011,11 +4011,11 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
4011
4011
  <div class="modal draggable">
4012
4012
  <div class="modal-content clearfix">
4013
4013
  <button type="button" class="modal-btn modal-close"><i class="close-medium"><span class="hidden-elements">Cerrar</span></i></button>
4014
-
4014
+
4015
4015
  <div class="modal-header">
4016
4016
  <h3 class="modal-title"></h3>
4017
4017
  </div>
4018
-
4018
+
4019
4019
  <div class="modal-body">
4020
4020
  <div class="activity-tweet clearfix"></div>
4021
4021
  <div class="loading">
@@ -4046,7 +4046,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
4046
4046
  </div>
4047
4047
  </div>
4048
4048
 
4049
-
4049
+
4050
4050
  <div id="signin-or-signup-dialog">
4051
4051
  <div id="signin-or-signup" class="modal-container">
4052
4052
  <div class="close-modal-background-target"></div>
@@ -4054,7 +4054,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
4054
4054
  <div class="modal-content">
4055
4055
  <button class="modal-btn modal-close"><i class="close-medium"><span class="hidden-elements">Cerrar</span></i></button>
4056
4056
  <div class="modal-header">
4057
- <h3 class="modal-title modal-long-title signup-only">Únete a Twitter y sigue a @W3CLove</h3>
4057
+ <h3 class="modal-title modal-long-title signup-only">Únete a Twitter y sigue a @MarkupValidator</h3>
4058
4058
  <h3 class="modal-title not-signup-only">Iniciar sesión en Twitter</h3>
4059
4059
  </div>
4060
4060
  <div class="modal-body signup-only">
@@ -4071,7 +4071,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
4071
4071
  <input type="password" name="user[user_password]">
4072
4072
  <span class="holder">Contraseña</span>
4073
4073
  </div>
4074
- <input name="follow" type="hidden" value="W3CLove">
4074
+ <input name="follow" type="hidden" value="MarkupValidator">
4075
4075
  <input type="hidden" value="" name="context">
4076
4076
  <input type="hidden" value="fee7199505aff1976dbf75b780f4c04b3fd37937" name="authenticity_token"/>
4077
4077
  <input name="follows" type="hidden" value="">
@@ -4081,36 +4081,36 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
4081
4081
  <div class="modal-body not-signup-only">
4082
4082
  <form action="https://twitter.com/sessions" class="signin" method="post">
4083
4083
  <fieldset>
4084
-
4084
+
4085
4085
  <div class="clearfix holding">
4086
4086
  <span class="username js-username holder">Nombre de usuario o correo electrónico</span>
4087
4087
  <input class="js-username-field email-input" type="text" name="session[username_or_email]" autocomplete="on" value="">
4088
4088
  <p class="help-text-inline">¿Olvidaste tu <a href="/account/resend_password" title="" tabindex="-1">nombre de usuario</a>?</p>
4089
4089
  </div>
4090
-
4090
+
4091
4091
  <div class="clearfix holding">
4092
4092
  <span class="password holder">Contraseña</span>
4093
4093
  <input class="js-password-field" type="password" name="session[password]">
4094
4094
  <p class="help-text-inline">¿Olvidaste tu <a href="/account/resend_password" tabindex="-1">contraseña</a>?</p>
4095
4095
  </div>
4096
-
4096
+
4097
4097
  <input type="hidden" value="fee7199505aff1976dbf75b780f4c04b3fd37937" name="authenticity_token"/>
4098
-
4098
+
4099
4099
  </fieldset>
4100
4100
  <div class="clearfix">
4101
-
4101
+
4102
4102
  <input type="hidden" name="scribe_log">
4103
4103
  <input type="hidden" name="redirect_after_login" value="">
4104
4104
  <input type="hidden" value="fee7199505aff1976dbf75b780f4c04b3fd37937" name="authenticity_token"/>
4105
4105
  <button type="submit" class="submit btn primary-btn">Iniciar sesión</button>
4106
-
4106
+
4107
4107
  <fieldset class="subchck">
4108
4108
  <label class="remember">
4109
4109
  <input type="checkbox" value="1" name="remember_me" >
4110
4110
  Recordar mis datos
4111
4111
  </label>
4112
4112
  </fieldset>
4113
-
4113
+
4114
4114
  </div>
4115
4115
  <div class="divider"></div>
4116
4116
  <p>
@@ -4121,7 +4121,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
4121
4121
  <div class="signup">
4122
4122
  <h2>¿No estás en Twitter? Regístrate, ponte al día con las cosas que te importan, y recibe actualizaciones inmediatas.</h2>
4123
4123
  <form action="https://twitter.com/signup" class="signup" method="get">
4124
- <input name="follow" type="hidden" value="W3CLove">
4124
+ <input name="follow" type="hidden" value="MarkupValidator">
4125
4125
  <button class="btn promotional signup-btn" type="submit">Regístrate &raquo; </button>
4126
4126
  </form>
4127
4127
  </div>
@@ -4139,7 +4139,7 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
4139
4139
  <h3 class="modal-title">Códigos cortos </h3>
4140
4140
  </div>
4141
4141
  <div class="modal-body">
4142
-
4142
+
4143
4143
  <table id="sms_codes" cellpadding="0" cellspacing="0">
4144
4144
  <thead>
4145
4145
  <tr>
@@ -4212,17 +4212,17 @@ data-expanded-footer="&lt;div class=&quot;js-tweet-details-fixer tweet-details-f
4212
4212
  </div> <script src="https://si0.twimg.com/c/swift/prereqs.1a057f2e2c17cf5c21435693ad9213df.js"></script>
4213
4213
  <script>
4214
4214
  using.path = 'https://si0.twimg.com/c/swift/es';
4215
-
4215
+
4216
4216
  using.bundles.push({"$bundle\/discover.c934f58529f92a28c0154e75e4d7d2cb.js":["app\/data\/trends","app\/data\/trends_scribe","app\/ui\/trends\/trends","app\/ui\/trends\/trends_dialog","app\/boot\/trends","app\/data\/activity_popup","app\/ui\/dialogs\/activity_popup","app\/data\/activity_popup_scribe","app\/boot\/activity_popup","app\/data\/tweet_actions","app\/data\/discover_scribe","app\/data\/discover","app\/utils\/ellipsis","app\/ui\/expando\/with_expanding_containers","app\/ui\/expando\/expando_helpers","app\/utils\/tweet_helper","app\/ui\/with_tweet_actions","app\/ui\/tweets","app\/ui\/tweet_injector","app\/utils\/google_maps","app\/ui\/map","app\/ui\/expando\/with_expanding_social_activity","app\/ui\/with_discover_expando","app\/ui\/with_discover_clicks","app\/ui\/discover","app\/ui\/expando\/close_all_button","app\/ui\/discover_nav","app\/pages\/discover\/discover"],"$bundle\/events.3e65c05652aec57d394e2f3465d78d83.js":["app\/ui\/media\/phoenix_shim","app\/utils\/twt","app\/ui\/media\/types","$lib\/easyXDM.js","app\/utils\/easy_xdm","app\/utils\/sandboxed_ajax","app\/ui\/media\/with_legacy_icons","app\/utils\/third_party_application","app\/ui\/media\/legacy_embed","app\/ui\/media\/with_legacy_embeds","app\/ui\/media\/with_flag_action","app\/ui\/media\/with_hidden_display","app\/ui\/media\/with_legacy_media","app\/ui\/media\/media_thumbnails","app\/data\/media_thumbnails_scribe","app\/ui\/dashboard_tweetbox","app\/ui\/dialogs\/signin_or_signup","app\/ui\/forms\/input_with_placeholder","app\/ui\/signup_call_out","app\/data\/signup_click_scribe","app\/logged_out_boot","app\/ui\/infinite_scroll_watcher","app\/data\/timeline","app\/boot\/timeline","app\/data\/activity_popup","app\/ui\/dialogs\/activity_popup","app\/data\/activity_popup_scribe","app\/boot\/activity_popup","app\/data\/tweet_actions","app\/data\/conversations","app\/data\/media_settings","app\/ui\/dialogs\/sensitive_flag_confirmation","app\/ui\/expando\/with_expanding_containers","app\/ui\/expando\/expando_helpers","app\/utils\/tweet_helper","app\/ui\/with_tweet_actions","app\/ui\/tweets","app\/ui\/tweet_injector","app\/utils\/google_maps","app\/ui\/map","app\/ui\/expando\/with_expanding_social_activity","app\/ui\/expando\/expanding_tweets","app\/ui\/expando\/close_all_button","app\/ui\/media\/with_native_media","app\/ui\/media\/media_tweets","app\/data\/url_resolver","app\/ui\/timelines\/with_keyboard_navigation","app\/ui\/timelines\/with_base_timeline","app\/ui\/timelines\/with_timeline_tweet_spam","app\/ui\/timelines\/with_old_items","app\/utils\/chrome","app\/ui\/timelines\/with_new_items","app\/ui\/timelines\/with_tweet_pagination","app\/ui\/timelines\/tweet_timeline","app\/ui\/user_actions","app\/boot\/tweet_timeline","app\/ui\/timelines\/event_timeline","app\/ui\/gallery\/gallery","app\/pages\/events\/hashtag"],"$bundle\/accounts.acb2207d490527a1aa20c912f5b217f6.js":["app\/ui\/account\/password_reset_controls","app\/ui\/password_match_pair","app\/ui\/with_password_strength","app\/ui\/password_strength","app\/pages\/account\/password_reset","app\/pages\/account\/password_reset_sent","app\/pages\/account\/password_reset_type","app\/ui\/captcha_dialog","app\/ui\/account\/resend_password_controls","app\/pages\/account\/resend_password","app\/ui\/account\/verify_personal_information_controls","app\/pages\/account\/verify_personal_information","app\/ui\/account\/verify_device_token_controls","app\/pages\/account\/verify_device_token","app\/pages\/account\/mobile_complete","app\/pages\/account\/mobile_sms_complete","app\/pages\/account\/mobile_verify"],"$bundle\/home.8d9383f60576e3383b8c23f30b4aa990.js":["app\/data\/trends","app\/data\/trends_scribe","app\/ui\/trends\/trends","app\/ui\/trends\/trends_dialog","app\/boot\/trends","app\/ui\/infinite_scroll_watcher","app\/data\/timeline","app\/boot\/timeline","app\/data\/activity_popup","app\/ui\/dialogs\/activity_popup","app\/data\/activity_popup_scribe","app\/boot\/activity_popup","app\/data\/tweet_actions","app\/data\/conversations","app\/data\/media_settings","app\/ui\/dialogs\/sensitive_flag_confirmation","app\/ui\/expando\/with_expanding_containers","app\/ui\/expando\/expando_helpers","app\/utils\/tweet_helper","app\/ui\/with_tweet_actions","app\/ui\/tweets","app\/ui\/tweet_injector","app\/utils\/google_maps","app\/ui\/map","app\/ui\/expando\/with_expanding_social_activity","app\/ui\/expando\/expanding_tweets","app\/ui\/expando\/close_all_button","app\/ui\/media\/phoenix_shim","app\/utils\/twt","app\/ui\/media\/types","$lib\/easyXDM.js","app\/utils\/easy_xdm","app\/utils\/sandboxed_ajax","app\/ui\/media\/with_legacy_icons","app\/utils\/third_party_application","app\/ui\/media\/legacy_embed","app\/ui\/media\/with_legacy_embeds","app\/ui\/media\/with_flag_action","app\/ui\/media\/with_hidden_display","app\/ui\/media\/with_legacy_media","app\/ui\/media\/with_native_media","app\/ui\/media\/media_tweets","app\/data\/url_resolver","app\/ui\/timelines\/with_keyboard_navigation","app\/ui\/timelines\/with_base_timeline","app\/ui\/timelines\/with_timeline_tweet_spam","app\/ui\/timelines\/with_old_items","app\/utils\/chrome","app\/ui\/timelines\/with_new_items","app\/ui\/timelines\/with_tweet_pagination","app\/ui\/timelines\/tweet_timeline","app\/ui\/user_actions","app\/boot\/tweet_timeline","app\/ui\/who_to_follow_dashboard","app\/data\/who_to_follow","app\/data\/who_to_follow_scribe","app\/ui\/promptbird","app\/utils\/oauth_popup","app\/data\/promptbird","app\/data\/promptbird_scribe","app\/ui\/dashboard_tweetbox","app\/utils\/boomerang","app\/pages\/home"],"$bundle\/search.81c566ac7f7721d7b785f3b52b20f080.js":["app\/data\/trends","app\/data\/trends_scribe","app\/ui\/trends\/trends","app\/ui\/trends\/trends_dialog","app\/boot\/trends","app\/ui\/dialogs\/search_operators_dialog","app\/pages\/search\/home","app\/ui\/advanced_search","app\/pages\/search\/advanced"],"$bundle\/login.461661e75296ca05c612e3af0605c027.js":["app\/ui\/forms\/input_with_placeholder","app\/pages\/login"],"$bundle\/connect.2a2a53b512ac7484779018d12c558fc3.js":["app\/ui\/who_to_follow_dashboard","app\/data\/who_to_follow","app\/data\/who_to_follow_scribe","app\/boot\/connect","app\/ui\/infinite_scroll_watcher","app\/data\/timeline","app\/boot\/timeline","app\/data\/activity_popup","app\/ui\/dialogs\/activity_popup","app\/data\/activity_popup_scribe","app\/boot\/activity_popup","app\/data\/tweet_actions","app\/data\/conversations","app\/data\/media_settings","app\/ui\/dialogs\/sensitive_flag_confirmation","app\/ui\/expando\/with_expanding_containers","app\/ui\/expando\/expando_helpers","app\/utils\/tweet_helper","app\/ui\/with_tweet_actions","app\/ui\/tweets","app\/ui\/tweet_injector","app\/utils\/google_maps","app\/ui\/map","app\/ui\/expando\/with_expanding_social_activity","app\/ui\/expando\/expanding_tweets","app\/ui\/expando\/close_all_button","app\/ui\/media\/phoenix_shim","app\/utils\/twt","app\/ui\/media\/types","$lib\/easyXDM.js","app\/utils\/easy_xdm","app\/utils\/sandboxed_ajax","app\/ui\/media\/with_legacy_icons","app\/utils\/third_party_application","app\/ui\/media\/legacy_embed","app\/ui\/media\/with_legacy_embeds","app\/ui\/media\/with_flag_action","app\/ui\/media\/with_hidden_display","app\/ui\/media\/with_legacy_media","app\/ui\/media\/with_native_media","app\/ui\/media\/media_tweets","app\/data\/url_resolver","app\/ui\/timelines\/with_keyboard_navigation","app\/ui\/timelines\/with_base_timeline","app\/ui\/timelines\/with_timeline_tweet_spam","app\/ui\/timelines\/with_old_items","app\/utils\/chrome","app\/ui\/timelines\/with_new_items","app\/ui\/timelines\/with_tweet_pagination","app\/ui\/timelines\/tweet_timeline","app\/ui\/user_actions","app\/boot\/tweet_timeline","app\/pages\/connect\/interactions","app\/pages\/connect\/mentions"],"$bundle\/signup.071d5810225ce77760b28efe4a2e0a70.js":["app\/ui\/signup\/with_captcha","app\/utils\/common_regexp","app\/ui\/signup\/signup_form","app\/ui\/with_password_strength","app\/data\/signup_data","app\/data\/settings","app\/data\/signup_scribe","app\/ui\/signup\/suggestions","app\/ui\/signup\/small_print_expander","app\/pages\/signup\/signup"],"$bundle\/mobile_gallery.cd0b1b3ad45fb9af263495930d379526.js":["app\/ui\/dialogs\/mobile_gallery_download_dialog","app\/ui\/mobile_gallery\/gallery_buttons","app\/ui\/forms\/mobile_gallery_email_form","app\/data\/mobile_gallery\/send_download_link","app\/pages\/mobile_gallery\/gallery","app\/pages\/mobile_gallery\/apps","app\/ui\/mobile_gallery\/firefox_tweet_button","app\/pages\/mobile_gallery\/firefox"],"$bundle\/vitonboarding.78df0c94855f3262834be7af0b0ca8ce.js":["app\/ui\/vit\/verification_step","app\/ui\/vit\/mobile_topbar","app\/pages\/vit\/onboarding"],"$bundle\/typeahead.c30cf835bdc22b8bd059e73828fe1f42.js":["app\/pages\/search\/swift_typeahead"],"$bundle\/boomerang.24a59a23201b496f7e7a68a52f6dd115.js":["$lib\/boomerang.js","app\/utils\/boomerang_lib"],"$bundle\/core.d5d98de21a8a68222299f095c150d6cc.js":["$lib\/jquery.js","$lib\/jquery.event.drag.js","core\/jquery","core\/utils","app\/utils\/is_ie","core\/compose","core\/fn","core\/registry","core\/component","core\/clock","core\/parameterize","core\/i18n","core\/logger","$lib\/mustache.js","debug\/mustache","debug\/debug","app\/utils\/querystring","app\/utils\/params","app\/utils\/auth_token","app\/data\/scribe_transport","app\/data\/client_event","app\/data\/with_scribe","app\/data\/scribe_monitor","app\/data\/ddg","app\/ui\/with_interaction_data","app\/utils\/scribe_item_types","app\/utils\/scribe_association_types","app\/data\/with_interaction_data_scribe","app\/data\/tweet_actions_scribe","app\/data\/user_actions_scribe","app\/data\/item_actions_scribe","app\/data\/navigation_scribe","app\/boot\/scribing","app\/data\/with_auth_token","app\/data\/with_data","app\/data\/promoted_logger","app\/ui\/keyboard_shortcuts","app\/ui\/navigation","app\/utils\/time","app\/data\/navigation","$lib\/jquery_autoellipsis.js","$lib\/jquery_color_picker.js","$lib\/jquery.swfobject.js","$lib\/jquery.hashchange.js","$lib\/bootstrap_tooltip.js","app\/jquery_with_plugins","app\/ui\/with_scrollbar_width","app\/ui\/with_dialog","app\/ui\/with_position","app\/ui\/dialogs\/keyboard_shortcuts_dialog","app\/ui\/dialogs\/with_modal_tweet","app\/ui\/dialogs\/retweet_dialog","app\/ui\/dialogs\/delete_tweet_dialog","app\/utils\/with_event_params","app\/ui\/dialogs\/confirm_dialog","app\/ui\/dialogs\/list_membership_dialog","app\/ui\/dialogs\/list_create_dialog","app\/data\/direct_messages","app\/data\/direct_messages_scribe","app\/utils\/levenshtein","app\/utils\/storage\/core","$lib\/gibberish-aes.js","app\/utils\/crypto\/aes","app\/utils\/storage\/with_crypto","app\/utils\/storage\/with_expiry","app\/utils\/storage\/array\/with_array","app\/utils\/storage\/array\/with_max_elements","app\/utils\/storage\/array\/with_unique_elements","app\/utils\/storage\/custom","app\/utils\/cached_ajax","app\/data\/autocomplete","app\/ui\/with_timestamp_updating","app\/ui\/direct_message_dialog","lib\/twitter-text","app\/ui\/with_character_counter","app\/utils\/caret","app\/ui\/with_rtl_tweet_box","app\/ui\/tweet_box","app\/ui\/with_autocomplete_helpers","app\/utils\/string","app\/ui\/autocomplete_dropdown","app\/boot\/direct_messages","app\/data\/profile_popup","app\/data\/profile_popup_scribe","app\/ui\/with_user_actions","app\/ui\/with_item_actions","app\/ui\/profile_popup","app\/data\/user","app\/data\/lists","app\/boot\/profile_popup","app\/ui\/message_drawer","app\/ui\/dialogs\/goto_user_dialog","app\/utils\/setup_polling_with_backoff","app\/ui\/page_title","app\/utils\/cookie","app\/data\/geo","app\/data\/tweet","app\/ui\/tweet_dialog","app\/ui\/new_tweet_button","app\/data\/tweet_box_scribe","app\/utils\/image","app\/utils\/image_thumbnail","app\/ui\/tweet_box_thumbnails","app\/utils\/image_resize","app\/ui\/with_image_selection","app\/ui\/image_selector","app\/ui\/with_click_outside","app\/ui\/geo_picker","app\/ui\/tweet_box_manager","app\/boot\/tweet_boxes","app\/ui\/with_dropdown","app\/ui\/user_dropdown","app\/ui\/signin_dropdown","app\/ui\/language_dropdown","app\/ui\/search_input","app\/ui\/global_nav","app\/ui\/navigation_links","app\/data\/typeahead\/with_cache","app\/utils\/typeahead_helpers","app\/data\/typeahead\/accounts_datasource","app\/data\/typeahead\/saved_searches_datasource","app\/data\/typeahead\/with_external_event_listeners","app\/data\/typeahead\/topics_datasource","app\/data\/typeahead\/typeahead","app\/ui\/typeahead\/with_accounts","app\/ui\/typeahead\/with_saved_searches","app\/ui\/typeahead\/with_topics","app\/ui\/typeahead\/typeahead_dropdown","app\/ui\/typeahead\/typeahead_input","app\/data\/typeahead_scribe","app\/boot\/top_bar","app\/ui\/google","app\/ui\/tooltips","app\/ui\/facebook_token_iframe","app\/ui\/impression_cookies","app\/ui\/banners\/email_banner","app\/ui\/search_query_source","app\/data\/email_banner","app\/boot","app\/utils\/ttft"],"$bundle\/permalink.a276281fa9ecdd640934c3245274b82b.js":["app\/utils\/tweet_helper","app\/ui\/with_tweet_actions","app\/ui\/permalink_keyboard_shortcuts","app\/data\/activity_popup","app\/ui\/dialogs\/activity_popup","app\/data\/activity_popup_scribe","app\/boot\/activity_popup","app\/utils\/twt","app\/ui\/dialogs\/embed_tweet","app\/data\/tweet_actions","app\/ui\/expando\/with_expanding_containers","app\/ui\/expando\/expando_helpers","app\/ui\/tweets","app\/ui\/tweet_injector","app\/utils\/google_maps","app\/ui\/map","app\/ui\/expando\/with_expanding_social_activity","app\/ui\/expando\/expanding_tweets","app\/ui\/dialogs\/sms_codes","app\/ui\/dialogs\/signin_or_signup","app\/ui\/forms\/input_with_placeholder","app\/ui\/signup_call_out","app\/data\/signup_click_scribe","app\/logged_out_boot","app\/data\/url_resolver","app\/ui\/media\/phoenix_shim","app\/ui\/media\/types","$lib\/easyXDM.js","app\/utils\/easy_xdm","app\/utils\/sandboxed_ajax","app\/ui\/media\/with_legacy_icons","app\/utils\/third_party_application","app\/ui\/media\/legacy_embed","app\/ui\/media\/with_legacy_embeds","app\/ui\/media\/with_flag_action","app\/ui\/media\/with_hidden_display","app\/ui\/media\/with_legacy_media","app\/ui\/media\/with_native_media","app\/ui\/media\/media_tweets","app\/pages\/permalink","app\/pages\/permalink_photo"],"$bundle\/settings.015aa65942897714d638cc9286ede735.js":["app\/data\/settings","app\/ui\/alert_banner","app\/boot\/settings","app\/data\/settings\/account_scribe","app\/data\/form_scribe","app\/ui\/with_forgot_password","app\/ui\/password_dialog","app\/ui\/protected_verified_dialog","app\/ui\/validating_fieldset","app\/ui\/email_confirmation","app\/ui\/timezone_detector","app\/ui\/deactivated","app\/ui\/geo_deletion","app\/ui\/settings_controls","app\/pages\/settings\/account","app\/data\/settings\/applications_scribe","app\/ui\/oauth_revoker","app\/pages\/settings\/applications","app\/data\/settings\/confirm_deactivation_scribe","app\/pages\/settings\/confirm_deactivation","app\/data\/settings\/design_scribe","app\/ui\/color_picker","app\/ui\/design","app\/ui\/theme_preview","app\/ui\/theme_picker","app\/ui\/image_uploader","app\/pages\/settings\/design","app\/data\/settings\/enhanced_profile_scribe","app\/ui\/capped_file_upload","app\/ui\/settings\/enhanced_profile_form","app\/pages\/settings\/enhanced_profile","app\/ui\/settings\/notifications","app\/pages\/settings\/notifications","app\/ui\/password","app\/ui\/password_match_pair","app\/ui\/with_password_strength","app\/ui\/password_strength","app\/pages\/settings\/password","app\/pages\/settings\/password_confirmation","app\/data\/settings\/profile_scribe","app\/ui\/facebook_button","app\/ui\/profile_image_monitor","app\/ui\/field_edit_warning","app\/ui\/dialogs\/in_product_help_dialog","app\/pages\/settings\/profile","app\/data\/settings\/sms_scribe","app\/ui\/forms\/select_box","app\/ui\/settings\/sms_phone_create_form","app\/ui\/forms\/element_group_toggler","app\/ui\/settings\/device_verified_form","app\/ui\/settings\/sms_phone_verify_form","app\/pages\/settings\/sms"],"$bundle\/profiles.d694aca443c45b4bdcff91ee78e16cf8.js":["app\/ui\/dialogs\/signin_or_signup","app\/ui\/forms\/input_with_placeholder","app\/ui\/signup_call_out","app\/data\/signup_click_scribe","app\/logged_out_boot","app\/ui\/profile\/head","app\/ui\/timelines\/profile_timeline","app\/ui\/dashboard_tweetbox","app\/ui\/who_to_follow_dashboard","app\/data\/who_to_follow","app\/data\/who_to_follow_scribe","app\/ui\/media\/phoenix_shim","app\/utils\/twt","app\/ui\/media\/types","$lib\/easyXDM.js","app\/utils\/easy_xdm","app\/utils\/sandboxed_ajax","app\/ui\/media\/with_legacy_icons","app\/utils\/third_party_application","app\/ui\/media\/legacy_embed","app\/ui\/media\/with_legacy_embeds","app\/ui\/media\/with_flag_action","app\/ui\/media\/with_hidden_display","app\/ui\/media\/with_legacy_media","app\/ui\/media\/media_thumbnails","app\/data\/media_thumbnails_scribe","app\/ui\/suggested_users","app\/data\/suggested_users","app\/boot\/profile","app\/ui\/infinite_scroll_watcher","app\/data\/timeline","app\/boot\/timeline","app\/data\/activity_popup","app\/ui\/dialogs\/activity_popup","app\/data\/activity_popup_scribe","app\/boot\/activity_popup","app\/data\/tweet_actions","app\/data\/conversations","app\/data\/media_settings","app\/ui\/dialogs\/sensitive_flag_confirmation","app\/ui\/expando\/with_expanding_containers","app\/ui\/expando\/expando_helpers","app\/utils\/tweet_helper","app\/ui\/with_tweet_actions","app\/ui\/tweets","app\/ui\/tweet_injector","app\/utils\/google_maps","app\/ui\/map","app\/ui\/expando\/with_expanding_social_activity","app\/ui\/expando\/expanding_tweets","app\/ui\/expando\/close_all_button","app\/ui\/media\/with_native_media","app\/ui\/media\/media_tweets","app\/data\/url_resolver","app\/ui\/timelines\/with_keyboard_navigation","app\/ui\/timelines\/with_base_timeline","app\/ui\/timelines\/with_timeline_tweet_spam","app\/ui\/timelines\/with_old_items","app\/utils\/chrome","app\/ui\/timelines\/with_new_items","app\/ui\/timelines\/with_tweet_pagination","app\/ui\/timelines\/tweet_timeline","app\/ui\/user_actions","app\/boot\/tweet_timeline","app\/pages\/profile\/favorites","app\/pages\/profile\/tweets","app\/ui\/timelines\/with_cursor_pagination","app\/ui\/timelines\/user_timeline","app\/boot\/user_timeline","app\/pages\/profile\/followers","app\/pages\/profile\/following"]});
4217
-
4218
-
4217
+
4218
+
4219
4219
  using(
4220
4220
  'app/pages/profile/tweets',
4221
4221
  'core/jquery',
4222
-
4222
+
4223
4223
  function(page, $) {
4224
-
4225
- page({"smsDeviceVerified":null,"swiftRoutes":{"profile":"\/"},"pageName":"profile","initialState":{"module":"app\/pages\/profile\/tweets","cache_ttl":300,"section":null,"title":"W3CLove App (W3CLove) en Twitter"},"deviceEnabled":false,"pushState":false,"sectionName":"profile","loggedIn":false,"sandboxes":{"jsonp":"https:\/\/si0.twimg.com\/a\/1342841381\/jsonp_sandbox.html","detailsPane":"https:\/\/si0.twimg.com\/a\/1342841381\/details_pane_content_sandbox.html"},"hasPushDevice":null,"scribeMetrics":500,"timeline_url":"\/w3clove","geoEnabled":false,"experiments":{"mobile_redirect_to_signup_278":{"bucket":"redirect","experiment_key":"mobile_redirect_to_signup_278","bucket_names":["control","redirect"],"version":5}},"assetsBasePath":"https:\/\/si0.twimg.com\/a\/1342841381\/","profile_id":318431467,"internalReferer":null,"typeaheadData":{"savedSearches":{"items":[],"enabled":false},"accounts":{"remoteQueriesEnabled":false,"blockedIds":[],"enabled":false,"localQueriesEnabled":false},"showDebugInfo":false,"topics":{"remoteQueriesEnabled":false,"enabled":false,"localQueriesEnabled":false}},"scribeBufferSize":3,"periodicScribeFlush":0,"screenName":null,"environment":"production","wtf_options":{"screen_name":"W3CLove","limit":3,"small_avatar":true,"pc":true,"display_location":"st-component"},"formAuthenticityToken":"fee7199505aff1976dbf75b780f4c04b3fd37937","profile_user":{"id":318431467,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2380086215\/fcu46ozay5f5al9kdfvq_normal.png","geo_enabled":false,"default_profile_image":false,"profile_sidebar_border_color":"C0DEED","favourites_count":21,"following":null,"show_all_inline_media":false,"utc_offset":7200,"profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2380086215\/fcu46ozay5f5al9kdfvq_normal.png","url":"http:\/\/w3clove.com","profile_sidebar_fill_color":"DDEEF6","name":"W3CLove App","followers_count":197,"created_at":"Thu Jun 16 13:44:48 +0000 2011","verified":false,"protected":false,"time_zone":"Athens","default_profile":true,"profile_background_color":"C0DEED","friends_count":190,"id_str":"318431467","location":"","description":"Site-wide markup validation tool","follow_request_sent":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","screen_name":"W3CLove","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","listed_count":3,"profile_link_color":"0084B4","lang":"es","profile_use_background_image":true,"statuses_count":298,"status":{"in_reply_to_user_id":null,"in_reply_to_status_id_str":null,"id_str":"225704790494162944","in_reply_to_status_id":null,"favorited":false,"created_at":"Wed Jul 18 21:33:10 +0000 2012","in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"truncated":false,"coordinates":null,"geo":null,"place":null,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","contributors":null,"retweeted":false,"id":225704790494162944,"text":"how many of you would like to sign up using email and password instead of twitter\/google\/facebook? And, why?"},"is_translator":false,"profile_text_color":"333333","notifications":null,"contributors_enabled":false}});
4224
+
4225
+ page({"smsDeviceVerified":null,"swiftRoutes":{"profile":"\/"},"pageName":"profile","initialState":{"module":"app\/pages\/profile\/tweets","cache_ttl":300,"section":null,"title":"MarkupValidator App (MarkupValidator) en Twitter"},"deviceEnabled":false,"pushState":false,"sectionName":"profile","loggedIn":false,"sandboxes":{"jsonp":"https:\/\/si0.twimg.com\/a\/1342841381\/jsonp_sandbox.html","detailsPane":"https:\/\/si0.twimg.com\/a\/1342841381\/details_pane_content_sandbox.html"},"hasPushDevice":null,"scribeMetrics":500,"timeline_url":"\/markupvalidator","geoEnabled":false,"experiments":{"mobile_redirect_to_signup_278":{"bucket":"redirect","experiment_key":"mobile_redirect_to_signup_278","bucket_names":["control","redirect"],"version":5}},"assetsBasePath":"https:\/\/si0.twimg.com\/a\/1342841381\/","profile_id":318431467,"internalReferer":null,"typeaheadData":{"savedSearches":{"items":[],"enabled":false},"accounts":{"remoteQueriesEnabled":false,"blockedIds":[],"enabled":false,"localQueriesEnabled":false},"showDebugInfo":false,"topics":{"remoteQueriesEnabled":false,"enabled":false,"localQueriesEnabled":false}},"scribeBufferSize":3,"periodicScribeFlush":0,"screenName":null,"environment":"production","wtf_options":{"screen_name":"MarkupValidator","limit":3,"small_avatar":true,"pc":true,"display_location":"st-component"},"formAuthenticityToken":"fee7199505aff1976dbf75b780f4c04b3fd37937","profile_user":{"id":318431467,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2380086215\/fcu46ozay5f5al9kdfvq_normal.png","geo_enabled":false,"default_profile_image":false,"profile_sidebar_border_color":"C0DEED","favourites_count":21,"following":null,"show_all_inline_media":false,"utc_offset":7200,"profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2380086215\/fcu46ozay5f5al9kdfvq_normal.png","url":"http:\/\/markupvalidator.com","profile_sidebar_fill_color":"DDEEF6","name":"MarkupValidator App","followers_count":197,"created_at":"Thu Jun 16 13:44:48 +0000 2011","verified":false,"protected":false,"time_zone":"Athens","default_profile":true,"profile_background_color":"C0DEED","friends_count":190,"id_str":"318431467","location":"","description":"Site-wide markup validation tool","follow_request_sent":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","screen_name":"MarkupValidator","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","listed_count":3,"profile_link_color":"0084B4","lang":"es","profile_use_background_image":true,"statuses_count":298,"status":{"in_reply_to_user_id":null,"in_reply_to_status_id_str":null,"id_str":"225704790494162944","in_reply_to_status_id":null,"favorited":false,"created_at":"Wed Jul 18 21:33:10 +0000 2012","in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"truncated":false,"coordinates":null,"geo":null,"place":null,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","contributors":null,"retweeted":false,"id":225704790494162944,"text":"how many of you would like to sign up using email and password instead of twitter\/google\/facebook? And, why?"},"is_translator":false,"profile_text_color":"333333","notifications":null,"contributors_enabled":false}});
4226
4226
  window.__swift_loaded = true;
4227
4227
  window.swiftActionQueue && window.swiftActionQueue.flush($);
4228
4228
  $(document).trigger('uiSwiftLoaded');