| ... | in poll.naml | 
| 
		 35 36 37 38 39 40 41 42 43 44 45 46 
	 | 
						
		 
				<override_macro name="node_message_as_html" requires="node">
			 
				    <n.overridden />
			 
				    <n.comment.>
			 
				        If this is a topic page (which calls the "message_text" command), then show the poll.
			 
				        Otherwise (email messages), print a link to the poll.
			 
				    </n.comment.>
			 
				    <n.if.is_in_command name="email_message">
			 
				        <then.poll_link/>
			 
				        <else.poll/>
			 
				    </n.if.is_in_command>
			 
				</override_macro>
			 
	 | 
					
| ... | in message.naml | 
| 
		 21 22 23 
	 | 
						
		 
				<macro name="node_message_as_html" requires="node">
			 
				    <n.node_message_block.message.message_as_html />
			 
				</macro>
			 
	 |