Example of MyPoint? Markup

{{author:ian reinhart geiser}}

{{date:3/18/2008}}

{{footer:Copyright 2008}}

{{template:special.tmpl}}


Text

  • Level 1 point
    • Level 2 point
    • Another level 2 point
    • Text formatting
      • bold text is supported
      • along with italics text is supported
      • and underlined text is supported
      • and struck out text too.
      • and bold & italics text can be mixed.
      • and super text and sub text can happen too.

{{footer:Custom footnote per page.}}


More points

  • Points
    • can
      • go
        • up
          • to
        • five
      • levels
    • deep.

Images


Images and Text

  • You can share images and text.
  • Images always on the left.
  • Lines will automatically scale to fit.

* Points can also break
across two or more
lines.


Custom backgrounds

  • You can have per page backgrounds.

{{background:base.png}}


Text and Preformatted Text

  • You can talk about code.
  • Add a few points about it.
     1: int main(int argc, char *argv[])
     2: {
     3: 	QApplication app(argc, argv);
     4:
     5: 	QFileInfo presentationFile(argv[1]);
     6:	QFile file(presentationFile.absoluteFilePath());
     7:	if( !file.open(QIODevice::ReadOnly ))
     8:		return 1;
     9:	QByteArray buffer = file.readAll();
    10:	SimpleParser parser;
    11:	parser.setBasePath( presentationFile.absolutePath() );
    12:	Presentation *pres = parser.parseDocument(
    13:		QString::fromUtf8(buffer.constData()) );
    14:	PDFSlideReporter reporter;
    15:	reporter.generateReport( pres, argv[2] );
    16:	return 0;
    17:
    18: }
    

Attachments