github.com/qri-io/qri@v0.10.1-0.20220104210721-c771715036cb/transform/startf/testdata/meta_title.star (about) 1 ds = dataset.latest() 2 3 meta = ds.get_meta() 4 if not meta: 5 ds.body = [['no title']] 6 else: 7 ds.body = [['title: %s' % meta['title']]] 8 9 dataset.commit(ds)