···173173}
174174175175impl Node {
176176- /// Obtain the Gemtext content of a single [`Node`] as a [`String`]
176176+ /// Convert a single [`Node`] of any node type to a Gemtext [`String`]
177177 #[must_use]
178178- pub fn content(&self) -> String {
178178+ pub fn to_gemtext(&self) -> String {
179179 super::Ast::from_nodes(vec![self.to_owned()]).to_gemtext()
180180 }
181181}