June 08, 2016
On Wednesday, 8 June 2016 at 16:44:35 UTC, Mike Parker wrote:
> On Wednesday, 8 June 2016 at 14:45:07 UTC, bachmeier wrote:
>> Is it possible to announce the new This Week In D from the blog when it comes out?
>
> That sort of post doesn't really fit within the goals of the blog. I mean, TWID is put out every Sunday. That would mean I'd make a two or three line blurb of the nature, "There's a new TWID out" every Sunday. That's what the Announce forum is for, and even Adam doesn't announce the new TWID every week.

+1

> I do intend to contact Adam about a TWID-related post, though (I've already got some others lined up for some interesting content). That's much more valuable, IMO, and fits better with the goals of the blog. And, of course, any time I can fit it in to the context of a given post, I'll certainly remind people to check TWID out. Every post should have value on its own other than being a simple announcement with a link.
>
> And now that you've brought this up, I've just realized there are no links to TWID in the dlang.org menus. I'll have to add one to the side bar of the blog.

It has even a better spot - the "News" section of the front page.
Speaking of which: now that we have have an official D Blog, maybe we can put the latest headline of the official blog to the news section?
June 09, 2016
On 2016-06-03 21:33, Mike Parker wrote:
> The D Blog was born at DConf this year. With help from Jack Stouffer, it
> is now live at:
>
> http://dlang.org/blog/

I would prefer if the text did not hyphenate the words. I think it's easier to read whole words.

If possible, it would be great if the blog worked with the Safari reader mode.

-- 
/Jacob Carlborg
June 10, 2016
On Thursday, 9 June 2016 at 09:06:18 UTC, Jacob Carlborg wrote:

>
> I would prefer if the text did not hyphenate the words. I think it's easier to read whole words.

Agreed. Thanks for reminding me. They weren't showing up for me in Chrome at all and I had forgotten that I saw them in Firefox (and Safari). I got rid of the indented paragraphs as well. That was just ugly.

>
> If possible, it would be great if the blog worked with the Safari reader mode.

I didn't realize anything special was needed for that. How can I make it so?

June 10, 2016
On 2016-06-10 20:21, Mike Parker wrote:

> I didn't realize anything special was needed for that. How can I make it
> so?

Unfortunately there doesn't seem to be an exact specification of what's required for the reader mode to be available. I can do some digging to see if I can find something.

-- 
/Jacob Carlborg
June 11, 2016
On 2016-06-10 20:47, Jacob Carlborg wrote:

> Unfortunately there doesn't seem to be an exact specification of what's
> required for the reader mode to be available. I can do some digging to
> see if I can find something.

At the bottom is the minimal amount of HTML code I could come up with that makes the reader mode available.

The number of letters in these paragraphs are important. If I remove some letters it will not make the reader mode available. But, it depends on the width of the browser window. The first paragraph below needs to not fit on one line to make the reader mode available. Below is the exact number of letters or words required to not make the text fit on one line on using a 1920px wide window.

An image is not required but I wasn't able to figure out what to use instead of the image below.

The document cannot be locale, i.e. file://.

I've not bother trying to make a multiple page article work.

<!DOCTYPE html>
<html>
   <body>
     Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
     tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
     veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
     commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
     velit esse cillum

     <p>
       Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
       tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
     </p>

     <p>
       Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
     </p>

     <div>
        <div>
          <img src="image.jpg" />
        </div>
     </div>
   </body>
</html>

-- 
/Jacob Carlborg
1 2 3
Next ›   Last »