This is the code I am using to try and get nicely combined Tengwar, but it's coming out with all the combining diacritics on circles next to the characters, instead of on top of them.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{fontspec}
\setmainfont{CharisSIL-R.ttf}
\newfontfamily{\telcontar}[Renderer=Graphite]{tengtelc.ttf}
\title{Langercast Podcast Notes}
\author{Wilco Jacobs \& Sam Blumire}
\begin{document}
\section{Episode 2 - }
{\telcontar ⁘ }
\end{document}
I'm expecting it to show up looking like this:

But it looks like this

I based what I am doing on what was said here: https://tex.stackexchange.com/a/169156/73255
But I can't seem to identify the problem, as I have done the same as them. I am using XeLaTeX

inputencis grossly wrong, for instance. AndRendering=Graphitedoesn't seem to work. – egreg Feb 28 '15 at 16:37fontspec: if I install the font on my system and say\font\telcontar="Tengwar Telcontar/GR", the output is correct. – egreg Feb 28 '15 at 16:49