You Need a Web Page

Writers, I cannot stress this enough. You need to have an easily found presence on the web. This is NOT a Facebook profile or an Amazon author page. While both of those things are also useful, they do not fulfill the role a webpage does.

but I am just starting out, and don’t have anything to post…

First off, this isn’t a ‘You need a blog!’ post. Blogging is its own thing, and has perks and negatives. This is a ‘You need a web page’ post.

You need a web page.

First, and foremost, I would highly suggest anyone who is writing (or hell, just about anyone) to buy their name URL (like jacobhaddon.com, for example). Even if you don’t use it, this is your name, and it is important.

But even if you don’t want to self host, there are options out there. I would suggested WordPress.com as the best one. WordPress is easy to use, easy to add pages and notes and links, and makes a nice looking site, even if you never use it as a blog. Also, if you do move to your own server, it is very easy to get your data from there to your new site.

They offer a mobile app for updates on the go, and with themes and plugins it is very easy to customize.

Try to pick a name that is professional looking, I recommend your name, jacobhaddon.wordpress.com, but if that is taken, then try something close.

Now, what do you put on it?

At a minimum, you post this:

  • Your Name
  • Your Bio
  • A way to contact you (see note below)
  • Links to your Twitter / Facebook Page / Instagram / etc
  • Links to books for sale you are in / wrote

Once you start getting more things, then make pages for your bio, books, contact, reviews, etc.

This business card like set up means it needs to be updated very rarely, for those who don’t want something else to maintain, but still allows for it to fulfill an important function for you.

Note: do NOT use your regular email as your contact email on a public website. Make an email specifically for this, either under your host (so contact@jacobhaddon.com, for example), or using a free email service, such as Gmail or Yahoo or Outlook, such as ContactJacobHaddon@ (whichever).com

Why? This email will get spammed. Lots. This email will also be available to anyone. By making this email not your normal one you now have the freedom to ditch it when needed. So contact@jacobhaddon.com becomes a spambots favorite friend? I delete it and start up comments@, or findme@ something like that.

What do you not put on it?

  • Ads.
  • Any video or music that autoplays
  • Links to things unrelated to writing

You are looking for something that when an editor is looking into you, they see a professional presentation. This is your calling card.

you . online

Your online presence is now up, and under your control. It is a place for readers, editors, and fellow writers to find you.

Set up a Goodreads profile? Link it here. Amazon author page? Link. Get interviewed on another site? Add that link. Book reviewed? You got it. Make this the place people come to find out you.

Plain Text Story Formatting, Part Two

This is the nerdy one. I talked previously about how I use plain text to write these days, but left the final formatting out of that discussion.

The fact is you can do formatting in this manner as well, you don’t need to copy paste into Word. There are a few things you will need, however: Some basic HTML / CSS knowledge; a program called Pandoc and comfort with the command line; and an app called Marked.

To start, this is Macintosh centric, as that is what I have. Pandoc will work on Windows and Linux too, which is good, as it is very useful. Marked, however, is just for the Mac. While I suspect there are Windows and Linux equivalents, I can’t speak to how they work.

First lets look at Marked and take about what it does. When I write, I used a syntax called markdown. It uses things asterisks to designate italics and bold, pound signs (hashtags…) for headings, etc. It is very simple, and since for the most part the only real thing we use in fiction is italics and possibly headers, there are very few things to remember.

Now, in principle what Marked does is similar to what your browser does when you look at a web site. Websites are just text files as well, but when the browser gets it, it renders it into a webpage. Marked does the same thing with your markdown syntax.

So instead of *this* it looks like this, which is what you wanted.

Now Marked also has a large collection of style sheets. This lets you change how your file will look, and hey, one of them is even standard manuscript format. That’s nice.

With a simple click your story is all formatted, ready to go. Need it changed? Marked comes with 9 pre-set style sheets, and since they are just CSS, making your own (or tweaking what is there) is quite easy.

It isn’t an editor. You will need to still open up your text file in whatever application you were writing in (I may have suggested Byword once or twice…) to change things.

But, for those following along at home, you may have question. When I talked about my story format, I had all of these other sections, like Notes and Characters in my file. What happens to those sections?

The nice part about markdown is that it is open to HTML as well. We will take the “comment” tag from HTML and fix this right up. As you recall, the layout I use looks like this:

Title: (title here)
Author: (my name)

To-Do

Summary

Characters

Locations

Notes

Story

Archive

Now, we will add comment tags, which look like this:

<!--
comments go here
and you can’t see them
-->

Which, when rendered in HTML, looks like this:

(That was a programming joke.)

So, what do we do? We enclose the parts that we don’t want to show in the final version in those comment tags, like this:

<!--
Title: (title here)
Author: (my name)

# To-Do

# Summary

# Characters

# Locations

# Notes

# Story
-->
# Title
## By Me

Once upon a *time*...

~fin~
<!--
# Archive
-->

And, since we don’t show comments, Marked passes over all of that. All we will get is:

Title

By Me

Once upon a time

~fin~

Thus, allowing me to keep all that information where I want it: in the file with the story itself, AND also have a well formatted document. (that other stuff is still there, if you looked at the source code of this post you would see it)

Marked lets you change the CSS if you want, so you can adjust fonts, spacings, indents, etc. Simply export from Marked to quite a few formats, like DOCX, PDF, and RTF

Pandoc

Pandoc provides a more versatile set of tools for those comfortable with the command line. For me, the feature I use the most is converting files into ebooks. Pandoc will convert my mess above into a full epub with a table of contents.

It makes it quite easy to add things as well. So if your file was mystory.txt and you had a bio.txt file of your well crafted biography, you can make an ebook like this:

pandoc -o mystory.epub mystory.txt bio.txt 

Simple, no? The -o tag is for output file name, which is in this case mystory.epub. Pandoc can tell what the file is by the extension, but you can also designate, like this:

pandoc -o mystory.epub  mystory.txt bio.txt -t markdown -s

Now, if you want to be more hands on, you can be. Pandoc lets you change the stylesheets, set a cover, add in the metadata.

You can do something similar with DOCX files. If you make a Word file that is formatted the way you want yours to be, Pandoc will use the same styles for your file. like this:

pandoc -o mystory.docx mystory.txt bio.txt --reference-docx=myotherstory.docx

And now your new mystory.docx file will have the same styles as myotherstory.docx has.

And this is just a drop of what Pandoc can do. If you need a quick powerful tool to convert files, this one is worth looking at.

Why?

Why? why do this? Why not just have piles of Word documents? All of this was spawned from the need to have so many different file formats for one story. The story starts off any way you want, but once complete, you will need an ebook, a PDF, a print version, Kindle one, etc.

And then you find one mistake, and now have to make sure you fix it in all of those.

I’m in the process of incorporating this structure into the creation of LampLight as well, allowing me to format once, and produce four files at the push of a button. (well, a few because I have to type, but still).

It also allows for greater control over the epub output, and mades it easier to spin updates if needed.

But the important part–important to me, that is–is the file format. As plain text, I know those story files can always be opened up. The work done to format, to clean up the files, to make these things will not be lost simply because a new version of some other software comes out.

And that, the future proofing of these files, is worth the extra effort.

Looking Back, Looking Forward

Lately I have been using composition notebooks as my primary notebook. This was more a fallout from an after school sale than any other factor, buying a stack for the year at 50¢ a piece.

An investment well worth the cost.

These notebooks, for those who haven’t used one in a while, are stitched in the center, and folded. And here, on this center spread, I’ve formed a new habit.

When I get to these pages, I use both sides and write a journal that is themed ‘Looking Back, Looking Forward’. I write about my goals, how they are doing, how they are progressing, things like page counts and monthly challenges.

I write about the stories and poems themselves, which are working, which are falling behind. Which ones I should be focusing on, and which need to rest a while?

Then I look forward. Do I want to keep all the goals? Should I try something new, or return to something old? Which things are going to be my focus, and which things will wait?

I fill both pages of the spread with this self-reflection, taking just a few moments of time. But important moments.

The good thing about this reflection is that it comes not at a calendar moment, like the new year, or my birthday, but at an unplanned one, just when the center of the book is reached.

I reached the center of my notebook last night, a center that took longer than expected to reach. Still, a moment of reflection found that the time had been well spent, spread over several notebooks now, instead of one.

Realigned, reflected, ready to write.