TIL That the maximum length for a Steemit post title is blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah 255 characterssteemCreated with Sketch.

in til •  8 years ago  (edited)

Yup, 255 characters.

As empirically verified while creating a new Steemit post (i.e. this one), and also via the following JavaScript code snippet from the

steemit.com GitHub project: / https://github.com/steemit/steemit.com/blob/ded8ecfcc9caf2d73b6ef12dbd0191bd9dbf990b/app/components/elements/ReplyEditor.jsx

    const maxKb = isStory ? 100 : 16
    const validate = values => ({
        title: isStory && (
            !values.title || values.title.trim() === '' ? 'Required' :
            values.title.length > 255 ? 'Shorten title' :
            null
        ),
        category: isStory && validateCategory(values.category, !isEdit),
        body: !values.body ? 'Required' :
              values.body.length > maxKb * 1024 ? 'Exceeds maximum length ('+maxKb+'KB)' : null,
    })

It also appears from the above code snippet that the maximum story body is 102400 characters (i.e. 100 Kilobytes).

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Hi, I need some help. I am unable to post anything on my blog because under the title box (which is empty) it says 'shorten title' in red and as a result of this the 'post' button just isn't getting activated, even though i enter title, main text and tags correctly. I would much appreciate some advice - sincerely, Marina

As the social media guy that dam title length is a big headache for sites like Twitter.

Maybe it was done intentionally, who knows 😏

this gave me a laugh lol

I've been wondering about that. I've had long titles, and never seemed to get cut off. I should have pushed it once or twice. Nice sleuthing! : )

Me too, curiosity finally got me and I had to check it out.