You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: simplify extract_description logic and fix bullet formatting
- Simplify description extraction to use single newline joins
- Fix bullet list formatting: each bullet now on separate line
- Remove complex paragraph joining logic (45 lines -> 28 lines)
- Let Markdown handle formatting naturally
- Maintain all Issue #1108 requirements (backticks, no redundant blank lines)
Addresses feedback from @georgeh0 in PR #1210
Copy file name to clipboardExpand all lines: docs/docs/core/cli-commands.md
+19-16Lines changed: 19 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,11 @@
4
4
5
5
### `drop`
6
6
7
-
8
7
Drop the backend setup for flows.
9
8
10
-
Modes of operation: 1. Drop all flows defined in an app: `cocoindex drop <APP_TARGET>` 2. Drop specific named flows: `cocoindex drop <APP_TARGET> [FLOW_NAME...]`
9
+
Modes of operation:
10
+
1. Drop all flows defined in an app: `cocoindex drop <APP_TARGET>`
11
+
2. Drop specific named flows: `cocoindex drop <APP_TARGET> [FLOW_NAME...]`
11
12
12
13
13
14
**Usage:**
@@ -27,18 +28,19 @@ cocoindex drop [OPTIONS] [APP_TARGET] [FLOW_NAME]...
27
28
28
29
### `evaluate`
29
30
30
-
31
31
Evaluate the flow and dump flow outputs to files.
32
32
33
-
Instead of updating the index, it dumps what should be indexed to files. Mainly used for evaluation purpose.
33
+
Instead of updating the index, it dumps what should be indexed to files.
34
+
Mainly used for evaluation purpose.
34
35
35
36
`APP_FLOW_SPECIFIER`: Specifies the application and optionally the target flow. Can be one of the following formats:
36
37
-`path/to/your_app.py`
37
38
-`an_installed.module_name`
38
39
-`path/to/your_app.py:SpecificFlowName`
39
40
-`an_installed.module_name:SpecificFlowName`
40
41
41
-
`:SpecificFlowName` can be omitted only if the application defines a single flow.
42
+
`:SpecificFlowName` can be omitted only if the application defines a single
0 commit comments