Lines Matching refs:text
16 $text = "My page content";
17 saveWikiText('description_test', $text, 'Created');
18 self::assertEquals($text, p_get_metadata('description_test', 'description abstract', METADATA_RENDER_UNLIMITED));
20 $text .= DOKU_LF . '~~META:description abstract=My abstract~~';
22 saveWikiText('description_test', $text, 'Added meta');
26 $text .= DOKU_LF . '~~META:description foobar=bar~~';
27 saveWikiText('description_test', $text, 'Updated meta');
33 $text = "My page content";
35 saveWikiText($id, $text, 'Created');
36 self::assertEquals($text, p_get_metadata($id, 'description abstract', METADATA_RENDER_UNLIMITED));
41 $text .= DOKU_LF . '~~META:description abstract=My abstract~~';
43 saveWikiText($id, $text, 'Added meta');
47 $text .= DOKU_LF . '~~META:description foobar=bar~~';
48 saveWikiText($id, $text, 'Updated meta');
54 $text = "My page with a [[link_target|Link]].";
57 saveWikiText($id, $text, 'Created');
61 $text .= DOKU_LF. "~~META:relation references=foo~~";
62 saveWikiText($id, $text, 'Updated');
68 $text = "My page without a link.";
71 saveWikiText($id, $text, 'Created');
75 $text .= DOKU_LF . "~~META:relation references=foo~~";
76 saveWikiText($id, $text, 'Updated');