How to get custom node property?

The below code actually works, but I'm trying to modify it so that it pulls in the value of the headline field, not the node name of the articles. I'm sure it's something simple, but I'm a bit new to XSLT.

Each newsArticle node contains a field alias called headline


        <xsl:for-each select="umbraco.library:GetXmlNodeById(1087)/newsArticle [@isDoc]">
          <div class="recentNewsArticle">
              <a href="{umbraco.library:NiceUrl(@id)}"><xsl:value-of select="@nodeName"/></a>
          </div>
       </xsl:for-each>

Thanks for your assitance.


This is a companion discussion topic for the original entry at https://our.umbraco.com/forum/11934-how-to-get-custom-node-property