markform 0.1.9 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -106,38 +106,33 @@ Format: $X.XB, $XXM, or $XXK (e.g., "$10B")
106
106
  - [ ] Public {% #public %}
107
107
  {% /field %}
108
108
 
109
- {% field kind="string_list" id="key_investors" label="Key Investors" maxItems=10 %}{% /field %}
110
-
111
- {% instructions ref="key_investors" %}
112
- List notable investors (VCs, angels), one per line.
113
- {% /instructions %}
114
-
115
- {% field kind="url_list" id="funding_announcements" label="Funding Announcement URLs" maxItems=5 uniqueItems=true %}{% /field %}
109
+ {% field kind="table" id="funding_rounds" label="Funding Rounds"
110
+ columnIds=["round_type", "date", "amount", "lead_investors", "source_url"]
111
+ columnTypes=["string", "string", "string", "string", "url"]
112
+ minRows=0 maxRows=10 %}
113
+ | Round Type | Date | Amount | Lead Investor(s) | Source URL |
114
+ |------------|------|--------|------------------|------------|
115
+ {% /field %}
116
116
 
117
- {% instructions ref="funding_announcements" %}
118
- URLs to press releases or articles about funding rounds.
117
+ {% instructions ref="funding_rounds" %}
118
+ List funding rounds, most recent first. Date format: YYYY-MM.
119
+ Example: Series B | 2023-06 | $50M | Sequoia Capital | https://techcrunch.com/...
119
120
  {% /instructions %}
120
121
 
121
122
  {% /group %}
122
123
 
123
124
  {% group id="people" title="Key People" %}
124
125
 
125
- {% field kind="string" id="ceo" label="CEO / Founder" %}{% /field %}
126
-
127
- {% instructions ref="ceo" %}
128
- Name of CEO or primary founder.
129
- {% /instructions %}
130
-
131
- {% field kind="url" id="ceo_linkedin" label="CEO LinkedIn" %}{% /field %}
132
-
133
- {% instructions ref="ceo_linkedin" %}
134
- LinkedIn profile URL of the CEO/founder.
135
- {% /instructions %}
136
-
137
- {% field kind="string_list" id="founders" label="Founders" maxItems=5 %}{% /field %}
126
+ {% field kind="table" id="founders" label="Founders"
127
+ columnIds=["name", "title", "linkedin"]
128
+ columnTypes=["string", "string", "url"]
129
+ minRows=1 maxRows=5 %}
130
+ | Name | Title | LinkedIn URL |
131
+ |------|-------|--------------|
132
+ {% /field %}
138
133
 
139
134
  {% instructions ref="founders" %}
140
- List all founders, one per line.
135
+ List founders and co-founders. Include name, current title, and LinkedIn profile URL.
141
136
  {% /instructions %}
142
137
 
143
138
  {% field kind="number" id="employee_count" label="Employee Count" min=1 integer=true %}{% /field %}
@@ -163,26 +158,32 @@ Approximate number of employees.
163
158
  - [ ] Other {% #other %}
164
159
  {% /field %}
165
160
 
166
- {% field kind="string_list" id="competitors" label="Competitors" maxItems=5 %}{% /field %}
161
+ {% field kind="table" id="competitors" label="Key Competitors"
162
+ columnIds=["company_name", "website", "one_liner"]
163
+ columnTypes=["string", "url", "string"]
164
+ minRows=0 maxRows=5 %}
165
+ | Company Name | Website | One-liner |
166
+ |--------------|---------|-----------|
167
+ {% /field %}
167
168
 
168
169
  {% instructions ref="competitors" %}
169
- List main competitors, one per line.
170
- {% /instructions %}
171
-
172
- {% field kind="url_list" id="competitor_urls" label="Competitor Website URLs" maxItems=5 uniqueItems=true %}{% /field %}
173
-
174
- {% instructions ref="competitor_urls" %}
175
- Website URLs of main competitors.
170
+ List main competitors with their website and a brief description.
176
171
  {% /instructions %}
177
172
 
178
173
  {% /group %}
179
174
 
180
175
  {% group id="press_coverage" title="Press & Coverage" %}
181
176
 
182
- {% field kind="url_list" id="press_articles" label="Press Coverage URLs" minItems=1 maxItems=10 uniqueItems=true %}{% /field %}
177
+ {% field kind="table" id="press_articles" label="Press Coverage"
178
+ columnIds=["title", "publication", "date", "url"]
179
+ columnTypes=["string", "string", "date", "url"]
180
+ minRows=1 maxRows=10 %}
181
+ | Title | Publication | Date | URL |
182
+ |-------|-------------|------|-----|
183
+ {% /field %}
183
184
 
184
185
  {% instructions ref="press_articles" %}
185
- URLs to major press articles, reviews, or coverage about the company.
186
+ Notable press articles, reviews, or coverage about the company.
186
187
  {% /instructions %}
187
188
 
188
189
  {% field kind="url" id="crunchbase_url" label="Crunchbase Profile" %}{% /field %}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markform",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Markdown forms for token-friendly workflows",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "author": "Joshua Levy",