├── Kernel ├── AddOne.wl ├── MyPaclet.wl └── AddTwo.wl ├── README.md ├── PacletInfo.wl ├── LICENSE └── Documentation └── English └── ReferencePages └── Symbols ├── AddOne.nb └── AddTwo.nb /Kernel/AddOne.wl: -------------------------------------------------------------------------------- 1 | BeginPackage["MyPaclet`"]; 2 | 3 | (* Declare your packages public symbols here. *) 4 | 5 | AddOne; 6 | 7 | Begin["`Private`"]; 8 | 9 | (* Define your public and private symbols here. *) 10 | 11 | AddOne[x_] := x + 1; 12 | 13 | End[]; (* End `Private` *) 14 | 15 | EndPackage[]; 16 | -------------------------------------------------------------------------------- /Kernel/MyPaclet.wl: -------------------------------------------------------------------------------- 1 | (* This will be flagged in the commit diff *) 2 | If[a, b, b] 3 | < # + y &|>; 7 | 8 | (* This is just not nice: *) 9 | Plus = Times; 10 | -------------------------------------------------------------------------------- /Kernel/AddTwo.wl: -------------------------------------------------------------------------------- 1 | BeginPackage["SamplePublisher`MyPaclet`"]; 2 | 3 | (* Declare your packages public symbols here. *) 4 | 5 | AddTwo; 6 | 7 | Begin["`Private`"]; 8 | 9 | (* Define your public and private symbols here. *) 10 | 11 | AddTwo[x_] := x + 2; 12 | 13 | (* This should get flagged as an issue: *) 14 | If[a, b, b] 15 | 16 | End[]; (* End `Private` *) 17 | 18 | EndPackage[]; 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PacletCICD-Examples-MoreIssues 2 | 3 | This is a sample Paclet used for [PacletCICD](https://github.com/WolframResearch/PacletCICD) documentation examples that's meant to fail standard checks due to several significant issues. 4 | 5 | A local copy can be retrieved in Wolfram Language using the following steps. 6 | 7 | Install the [PacletCICD](https://github.com/WolframResearch/PacletCICD) Paclet: 8 | ```Mathematica 9 | PacletInstall[ResourceObject["Wolfram/PacletCICD"]] 10 | ``` 11 | 12 | Load the necessary context: 13 | ```Mathematica 14 | Needs["Wolfram`PacletCICD`"] 15 | ``` 16 | 17 | Get a directory containing this repository's source code: 18 | ```Mathematica 19 | ExampleDirectory["MoreIssues"] 20 | ``` -------------------------------------------------------------------------------- /PacletInfo.wl: -------------------------------------------------------------------------------- 1 | PacletObject[ <| 2 | "Name" -> "SamplePublisher/MyPaclet", 3 | "Description" -> "This is an example paclet", 4 | "Creator" -> "Example Creator", 5 | "Version" -> "1.7.0", 6 | "WolframVersion" -> "13.0+", 7 | "License" -> "MIT", 8 | "PublisherID" -> "SamplePublisher", 9 | "SourceControlURL" -> "https://github.com/WolframResearch/PacletCICD-Examples-MoreIssues", 10 | "Extensions" -> { 11 | { 12 | "Kernel", 13 | "Root" -> "Kernel", 14 | "Context" -> { "SamplePublisher`MyPaclet`" }, 15 | "Symbols" -> { 16 | "SamplePublisher`MyPaclet`AddOne", 17 | "SamplePublisher`MyPaclet`AddTwo" 18 | } 19 | }, 20 | { 21 | "Documentation", 22 | "Root" -> "Documentation", 23 | "Language" -> "English" 24 | }, 25 | { 26 | "Asset", 27 | "Assets" -> { { "License", "./LICENSE" } } 28 | } 29 | } 30 | |> ] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Wolfram Research 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Documentation/English/ReferencePages/Symbols/AddOne.nb: -------------------------------------------------------------------------------- 1 | (* Content-type: application/vnd.wolfram.mathematica *) 2 | 3 | (*** Wolfram Notebook File ***) 4 | (* http://www.wolfram.com/nb *) 5 | 6 | (* Created By: SaveReadableNotebook *) 7 | (* https://resources.wolframcloud.com/FunctionRepository/resources/SaveReadableNotebook *) 8 | 9 | Notebook[ 10 | { 11 | Cell[ 12 | TextData[ 13 | { 14 | "New in: ", 15 | Cell["??", "HistoryData", CellTags -> "New"], 16 | " | Modified in: ", 17 | Cell[" ", "HistoryData", CellTags -> "Modified"], 18 | " | Obsolete in: ", 19 | Cell[" ", "HistoryData", CellTags -> "Obsolete"], 20 | " | Excised in: ", 21 | Cell[" ", "HistoryData", CellTags -> "Excised"] 22 | } 23 | ], 24 | "History", 25 | CellID -> 187428174 26 | ], 27 | Cell[ 28 | "Created by: rhennigan on 01-24-2022 13:50:48", 29 | "AuthorDate", 30 | CellID -> 474417135 31 | ], 32 | Cell[ 33 | CellGroupData[ 34 | { 35 | Cell[ 36 | "Categorization", 37 | "CategorizationSection", 38 | CellID -> 534530772 39 | ], 40 | Cell[ 41 | "Symbol", 42 | "Categorization", 43 | CellLabel -> "Entity Type", 44 | CellID -> 544054244 45 | ], 46 | Cell[ 47 | "SamplePublisher/WrongPacletName", 48 | "Categorization", 49 | CellLabel -> "Paclet Name", 50 | CellID -> 49967430 51 | ], 52 | Cell[ 53 | "SamplePublisher`MyPaclet`", 54 | "Categorization", 55 | CellLabel -> "Context", 56 | CellID -> 559698399 57 | ], 58 | Cell[ 59 | "SamplePublisher/MyPaclet/ref/AddOne", 60 | "Categorization", 61 | CellLabel -> "URI", 62 | CellID -> 153856858 63 | ] 64 | }, 65 | Open 66 | ] 67 | ], 68 | Cell[ 69 | CellGroupData[ 70 | { 71 | Cell["Keywords", "KeywordsSection", CellID -> 25058059], 72 | Cell["XXXX", "Keywords", CellID -> 69676685] 73 | }, 74 | Open 75 | ] 76 | ], 77 | Cell[ 78 | CellGroupData[ 79 | { 80 | Cell[ 81 | "Syntax Templates", 82 | "TemplatesSection", 83 | CellID -> 311986639 84 | ], 85 | Cell[ 86 | BoxData[""], 87 | "Template", 88 | CellLabel -> "Additional Function Template", 89 | CellID -> 50098226 90 | ], 91 | Cell[ 92 | BoxData[""], 93 | "Template", 94 | CellLabel -> "Arguments Pattern", 95 | CellID -> 230041549 96 | ], 97 | Cell[ 98 | BoxData[""], 99 | "Template", 100 | CellLabel -> "Local Variables", 101 | CellID -> 3527392 102 | ], 103 | Cell[ 104 | BoxData[""], 105 | "Template", 106 | CellLabel -> "Color Equal Signs", 107 | CellID -> 6765112 108 | ] 109 | }, 110 | Open 111 | ] 112 | ], 113 | Cell[ 114 | CellGroupData[ 115 | { 116 | Cell["AddOne", "ObjectName", CellID -> 24997743], 117 | Cell[ 118 | TextData[ 119 | { 120 | Cell[" ", "ModInfo"], 121 | Cell[ 122 | BoxData[ 123 | RowBox[ 124 | { 125 | ButtonBox[ 126 | "AddOne", 127 | BaseStyle -> "Link", 128 | ButtonData -> "paclet:SamplePublisher/MyPaclet/ref/AddOne" 129 | ], 130 | "[", 131 | StyleBox["x", "TI"], 132 | "]" 133 | } 134 | ] 135 | ], 136 | "InlineFormula" 137 | ], 138 | " \[LineSeparator]adds one to ", 139 | Cell[BoxData[StyleBox["x", "TI"]], "InlineFormula"], 140 | "." 141 | } 142 | ], 143 | "Usage", 144 | CellID -> 351056415 145 | ], 146 | Cell["XXXX", "Notes", CellID -> 243603386] 147 | }, 148 | Open 149 | ] 150 | ], 151 | Cell[ 152 | CellGroupData[ 153 | { 154 | Cell["Tech Notes", "TechNotesSection", CellID -> 609797114], 155 | Cell["XXXX", "Tutorials", CellID -> 23558969] 156 | }, 157 | Open 158 | ] 159 | ], 160 | Cell[ 161 | CellGroupData[ 162 | { 163 | Cell[ 164 | "Related Demonstrations", 165 | "RelatedDemonstrationsSection", 166 | CellID -> 321025806 167 | ], 168 | Cell["XXXX", "RelatedDemonstrations", CellID -> 472105588] 169 | }, 170 | Open 171 | ] 172 | ], 173 | Cell[ 174 | CellGroupData[ 175 | { 176 | Cell[ 177 | "Related Links", 178 | "RelatedLinksSection", 179 | CellID -> 176565266 180 | ], 181 | Cell["XXXX", "RelatedLinks", CellID -> 192621024] 182 | }, 183 | Open 184 | ] 185 | ], 186 | Cell[ 187 | CellGroupData[ 188 | { 189 | Cell["See Also", "SeeAlsoSection", CellID -> 203432188], 190 | Cell["XXXX", "SeeAlso", CellID -> 183361636] 191 | }, 192 | Open 193 | ] 194 | ], 195 | Cell[ 196 | CellGroupData[ 197 | { 198 | Cell[ 199 | "Related Guides", 200 | "MoreAboutSection", 201 | CellID -> 769985 202 | ], 203 | Cell["XXXX", "MoreAbout", CellID -> 663012070] 204 | }, 205 | Open 206 | ] 207 | ], 208 | Cell[ 209 | CellGroupData[ 210 | { 211 | Cell[ 212 | BoxData[ 213 | InterpretationBox[ 214 | GridBox[ 215 | { 216 | { 217 | StyleBox["Examples", "PrimaryExamplesSection"], 218 | ButtonBox[ 219 | RowBox[ 220 | { 221 | RowBox[{"More", " ", "Examples"}], 222 | " ", 223 | "\[RightTriangle]" 224 | } 225 | ], 226 | BaseStyle -> "ExtendedExamplesLink", 227 | ButtonData :> "ExtendedExamples" 228 | ] 229 | } 230 | } 231 | ], 232 | $Line = 0; 233 | ] 234 | ], 235 | "PrimaryExamplesSection", 236 | CellID -> 33434298 237 | ], 238 | Cell[ 239 | BoxData[ 240 | RowBox[ 241 | {"Needs", "[", "\"SamplePublisher`MyPaclet`\"", "]"} 242 | ] 243 | ], 244 | "Input", 245 | CellLabel -> "In[2]:=", 246 | CellID -> 52936440 247 | ], 248 | Cell[ 249 | "Add one to something:", 250 | "ExampleText", 251 | CellID -> 295932735 252 | ], 253 | Cell[ 254 | CellGroupData[ 255 | { 256 | Cell[ 257 | BoxData[RowBox[{"AddOne", "[", "1", "]"}]], 258 | "Input", 259 | CellLabel -> "In[3]:=", 260 | CellID -> 507318712 261 | ], 262 | Cell[ 263 | BoxData["2"], 264 | "Output", 265 | CellLabel -> "Out[3]=", 266 | CellID -> 142676465 267 | ] 268 | }, 269 | Open 270 | ] 271 | ] 272 | }, 273 | Open 274 | ] 275 | ], 276 | Cell[ 277 | CellGroupData[ 278 | { 279 | Cell[ 280 | "More Examples", 281 | "ExtendedExamplesSection", 282 | CellTags -> "ExtendedExamples", 283 | CellID -> 361806219 284 | ], 285 | Cell[ 286 | BoxData[ 287 | InterpretationBox[ 288 | Cell["Scope", "ExampleSection"], 289 | $Line = 0; 290 | ] 291 | ], 292 | "ExampleSection", 293 | CellID -> 43871206 294 | ], 295 | Cell[ 296 | BoxData[ 297 | InterpretationBox[ 298 | Cell["Generalizations & Extensions", "ExampleSection"], 299 | $Line = 0; 300 | ] 301 | ], 302 | "ExampleSection", 303 | CellID -> 289657845 304 | ], 305 | Cell[ 306 | CellGroupData[ 307 | { 308 | Cell[ 309 | BoxData[ 310 | InterpretationBox[ 311 | Cell["Options", "ExampleSection"], 312 | $Line = 0; 313 | ] 314 | ], 315 | "ExampleSection", 316 | CellID -> 659978256 317 | ], 318 | Cell[ 319 | BoxData[ 320 | InterpretationBox[ 321 | Cell["XXXX", "ExampleSubsection"], 322 | $Line = 0; 323 | ] 324 | ], 325 | "ExampleSubsection", 326 | CellID -> 429907116 327 | ], 328 | Cell[ 329 | BoxData[ 330 | InterpretationBox[ 331 | Cell["XXXX", "ExampleSubsection"], 332 | $Line = 0; 333 | ] 334 | ], 335 | "ExampleSubsection", 336 | CellID -> 206416150 337 | ] 338 | }, 339 | Open 340 | ] 341 | ], 342 | Cell[ 343 | BoxData[ 344 | InterpretationBox[ 345 | Cell["Applications", "ExampleSection"], 346 | $Line = 0; 347 | ] 348 | ], 349 | "ExampleSection", 350 | CellID -> 239838154 351 | ], 352 | Cell[ 353 | BoxData[ 354 | InterpretationBox[ 355 | Cell["Properties & Relations", "ExampleSection"], 356 | $Line = 0; 357 | ] 358 | ], 359 | "ExampleSection", 360 | CellID -> 252884082 361 | ], 362 | Cell[ 363 | BoxData[ 364 | InterpretationBox[ 365 | Cell["Possible Issues", "ExampleSection"], 366 | $Line = 0; 367 | ] 368 | ], 369 | "ExampleSection", 370 | CellID -> 252784521 371 | ], 372 | Cell[ 373 | BoxData[ 374 | InterpretationBox[ 375 | Cell["Interactive Examples", "ExampleSection"], 376 | $Line = 0; 377 | ] 378 | ], 379 | "ExampleSection", 380 | CellID -> 73260748 381 | ], 382 | Cell[ 383 | BoxData[ 384 | InterpretationBox[ 385 | Cell["Neat Examples", "ExampleSection"], 386 | $Line = 0; 387 | ] 388 | ], 389 | "ExampleSection", 390 | CellID -> 230392378 391 | ] 392 | }, 393 | Open 394 | ] 395 | ] 396 | }, 397 | TaggingRules -> <| 398 | "Author" -> "rhennigan", 399 | "CreationDate" -> "01-24-2022 13:50:48" 400 | |>, 401 | CellContext -> "Global`", 402 | FrontEndVersion -> "13.0 for Microsoft Windows (64-bit) (December 2, 2021)", 403 | StyleDefinitions -> 404 | FrontEnd`FileName[ 405 | {"Wolfram"}, 406 | "FunctionPageStylesExt.nb", 407 | CharacterEncoding -> "UTF-8" 408 | ], 409 | ExpressionUUID -> "b7690d1b-06de-49d4-a254-41f33c59b937" 410 | ] -------------------------------------------------------------------------------- /Documentation/English/ReferencePages/Symbols/AddTwo.nb: -------------------------------------------------------------------------------- 1 | (* Content-type: application/vnd.wolfram.mathematica *) 2 | 3 | (*** Wolfram Notebook File ***) 4 | (* http://www.wolfram.com/nb *) 5 | 6 | (* Created By: SaveReadableNotebook *) 7 | (* https://resources.wolframcloud.com/FunctionRepository/resources/SaveReadableNotebook *) 8 | 9 | Notebook[ 10 | { 11 | Cell[ 12 | TextData[ 13 | { 14 | "New in: ", 15 | Cell["??", "HistoryData", CellTags -> "New"], 16 | " | Modified in: ", 17 | Cell[" ", "HistoryData", CellTags -> "Modified"], 18 | " | Obsolete in: ", 19 | Cell[" ", "HistoryData", CellTags -> "Obsolete"], 20 | " | Excised in: ", 21 | Cell[" ", "HistoryData", CellTags -> "Excised"] 22 | } 23 | ], 24 | "History", 25 | CellID -> 315992852 26 | ], 27 | Cell[ 28 | "Created by: rhennigan on 01-24-2022 13:52:09", 29 | "AuthorDate", 30 | CellID -> 152905052 31 | ], 32 | Cell[ 33 | CellGroupData[ 34 | { 35 | Cell[ 36 | "Categorization", 37 | "CategorizationSection", 38 | CellID -> 7843621 39 | ], 40 | Cell[ 41 | "Symbol", 42 | "Categorization", 43 | CellLabel -> "Entity Type", 44 | CellID -> 916924192 45 | ], 46 | Cell[ 47 | "SamplePublisher/MyPaclet", 48 | "Categorization", 49 | CellLabel -> "Paclet Name", 50 | CellID -> 259923264 51 | ], 52 | Cell[ 53 | "SamplePublisher`MyPaclet`", 54 | "Categorization", 55 | CellLabel -> "Context", 56 | CellID -> 493608718 57 | ], 58 | Cell[ 59 | "SamplePublisher/MyPaclet/ref/AddTwo", 60 | "Categorization", 61 | CellLabel -> "URI", 62 | CellID -> 249486932 63 | ] 64 | }, 65 | Open 66 | ] 67 | ], 68 | Cell[ 69 | CellGroupData[ 70 | { 71 | Cell["Keywords", "KeywordsSection", CellID -> 244873706], 72 | Cell["XXXX", "Keywords", CellID -> 22980582] 73 | }, 74 | Open 75 | ] 76 | ], 77 | Cell[ 78 | CellGroupData[ 79 | { 80 | Cell[ 81 | "Syntax Templates", 82 | "TemplatesSection", 83 | CellID -> 110874324 84 | ], 85 | Cell[ 86 | BoxData[""], 87 | "Template", 88 | CellLabel -> "Additional Function Template", 89 | CellID -> 541802800 90 | ], 91 | Cell[ 92 | BoxData[""], 93 | "Template", 94 | CellLabel -> "Arguments Pattern", 95 | CellID -> 458641600 96 | ], 97 | Cell[ 98 | BoxData[""], 99 | "Template", 100 | CellLabel -> "Local Variables", 101 | CellID -> 177396531 102 | ], 103 | Cell[ 104 | BoxData[""], 105 | "Template", 106 | CellLabel -> "Color Equal Signs", 107 | CellID -> 5073292 108 | ] 109 | }, 110 | Open 111 | ] 112 | ], 113 | Cell[ 114 | CellGroupData[ 115 | { 116 | Cell["AddTwo", "ObjectName", CellID -> 194296696], 117 | Cell[ 118 | TextData[ 119 | { 120 | Cell[" ", "ModInfo"], 121 | Cell[ 122 | BoxData[ 123 | RowBox[ 124 | { 125 | ButtonBox[ 126 | "AddTwo", 127 | BaseStyle -> "Link", 128 | ButtonData -> "paclet:SamplePublisher/MyPaclet/ref/AddTwo" 129 | ], 130 | "[", 131 | StyleBox["x", "TI"], 132 | "]" 133 | } 134 | ] 135 | ], 136 | "InlineFormula" 137 | ], 138 | " \[LineSeparator]adds two to ", 139 | Cell[BoxData[StyleBox["x", "TI"]], "InlineFormula"], 140 | "." 141 | } 142 | ], 143 | "Usage", 144 | CellID -> 179722508 145 | ], 146 | Cell["XXXX", "Notes", CellID -> 703587237] 147 | }, 148 | Open 149 | ] 150 | ], 151 | Cell[ 152 | CellGroupData[ 153 | { 154 | Cell["Tech Notes", "TechNotesSection", CellID -> 98790299], 155 | Cell["XXXX", "Tutorials", CellID -> 218100253] 156 | }, 157 | Open 158 | ] 159 | ], 160 | Cell[ 161 | CellGroupData[ 162 | { 163 | Cell[ 164 | "Related Demonstrations", 165 | "RelatedDemonstrationsSection", 166 | CellID -> 231113341 167 | ], 168 | Cell["XXXX", "RelatedDemonstrations", CellID -> 297704150] 169 | }, 170 | Open 171 | ] 172 | ], 173 | Cell[ 174 | CellGroupData[ 175 | { 176 | Cell[ 177 | "Related Links", 178 | "RelatedLinksSection", 179 | CellID -> 85611606 180 | ], 181 | Cell["XXXX", "RelatedLinks", CellID -> 11270685] 182 | }, 183 | Open 184 | ] 185 | ], 186 | Cell[ 187 | CellGroupData[ 188 | { 189 | Cell["See Also", "SeeAlsoSection", CellID -> 758739326], 190 | Cell["XXXX", "SeeAlso", CellID -> 13315245] 191 | }, 192 | Open 193 | ] 194 | ], 195 | Cell[ 196 | CellGroupData[ 197 | { 198 | Cell[ 199 | "Related Guides", 200 | "MoreAboutSection", 201 | CellID -> 133359908 202 | ], 203 | Cell["XXXX", "MoreAbout", CellID -> 258822146] 204 | }, 205 | Open 206 | ] 207 | ], 208 | Cell[ 209 | CellGroupData[ 210 | { 211 | Cell[ 212 | BoxData[ 213 | InterpretationBox[ 214 | GridBox[ 215 | { 216 | { 217 | StyleBox["Examples", "PrimaryExamplesSection"], 218 | ButtonBox[ 219 | RowBox[ 220 | { 221 | RowBox[{"More", " ", "Examples"}], 222 | " ", 223 | "\[RightTriangle]" 224 | } 225 | ], 226 | BaseStyle -> "ExtendedExamplesLink", 227 | ButtonData :> "ExtendedExamples" 228 | ] 229 | } 230 | } 231 | ], 232 | $Line = 0; 233 | ] 234 | ], 235 | "PrimaryExamplesSection", 236 | CellID -> 66346642 237 | ], 238 | Cell[ 239 | BoxData[ 240 | RowBox[ 241 | {"Needs", "[", "\"SamplePublisher`MyPaclet`\"", "]"} 242 | ] 243 | ], 244 | "Input", 245 | CellLabel -> "In[4]:=", 246 | CellID -> 644759732 247 | ], 248 | Cell[ 249 | "Add two to something:", 250 | "ExampleText", 251 | CellID -> 295932735 252 | ], 253 | Cell[ 254 | CellGroupData[ 255 | { 256 | Cell[ 257 | BoxData[RowBox[{"AddTwo", "[", "1", "]"}]], 258 | "Input", 259 | CellLabel -> "In[5]:=", 260 | CellID -> 507318712 261 | ], 262 | Cell[ 263 | BoxData["3"], 264 | "Output", 265 | CellLabel -> "Out[5]=", 266 | CellID -> 155024189 267 | ] 268 | }, 269 | Open 270 | ] 271 | ] 272 | }, 273 | Open 274 | ] 275 | ], 276 | Cell[ 277 | CellGroupData[ 278 | { 279 | Cell[ 280 | "More Examples", 281 | "ExtendedExamplesSection", 282 | CellTags -> "ExtendedExamples", 283 | CellID -> 958707522 284 | ], 285 | Cell[ 286 | BoxData[ 287 | InterpretationBox[ 288 | Cell["Scope", "ExampleSection"], 289 | $Line = 0; 290 | ] 291 | ], 292 | "ExampleSection", 293 | CellID -> 320585530 294 | ], 295 | Cell[ 296 | BoxData[ 297 | InterpretationBox[ 298 | Cell["Generalizations & Extensions", "ExampleSection"], 299 | $Line = 0; 300 | ] 301 | ], 302 | "ExampleSection", 303 | CellID -> 561617303 304 | ], 305 | Cell[ 306 | CellGroupData[ 307 | { 308 | Cell[ 309 | BoxData[ 310 | InterpretationBox[ 311 | Cell["Options", "ExampleSection"], 312 | $Line = 0; 313 | ] 314 | ], 315 | "ExampleSection", 316 | CellID -> 475054224 317 | ], 318 | Cell[ 319 | BoxData[ 320 | InterpretationBox[ 321 | Cell["XXXX", "ExampleSubsection"], 322 | $Line = 0; 323 | ] 324 | ], 325 | "ExampleSubsection", 326 | CellID -> 219457718 327 | ], 328 | Cell[ 329 | BoxData[ 330 | InterpretationBox[ 331 | Cell["XXXX", "ExampleSubsection"], 332 | $Line = 0; 333 | ] 334 | ], 335 | "ExampleSubsection", 336 | CellID -> 777847882 337 | ] 338 | }, 339 | Open 340 | ] 341 | ], 342 | Cell[ 343 | BoxData[ 344 | InterpretationBox[ 345 | Cell["Applications", "ExampleSection"], 346 | $Line = 0; 347 | ] 348 | ], 349 | "ExampleSection", 350 | CellID -> 112120342 351 | ], 352 | Cell[ 353 | BoxData[ 354 | InterpretationBox[ 355 | Cell["Properties & Relations", "ExampleSection"], 356 | $Line = 0; 357 | ] 358 | ], 359 | "ExampleSection", 360 | CellID -> 695592715 361 | ], 362 | Cell[ 363 | BoxData[ 364 | InterpretationBox[ 365 | Cell["Possible Issues", "ExampleSection"], 366 | $Line = 0; 367 | ] 368 | ], 369 | "ExampleSection", 370 | CellID -> 430854219 371 | ], 372 | Cell[ 373 | BoxData[ 374 | InterpretationBox[ 375 | Cell["Interactive Examples", "ExampleSection"], 376 | $Line = 0; 377 | ] 378 | ], 379 | "ExampleSection", 380 | CellID -> 13729787 381 | ], 382 | Cell[ 383 | BoxData[ 384 | InterpretationBox[ 385 | Cell["Neat Examples", "ExampleSection"], 386 | $Line = 0; 387 | ] 388 | ], 389 | "ExampleSection", 390 | CellID -> 110087917 391 | ] 392 | }, 393 | Open 394 | ] 395 | ] 396 | }, 397 | TaggingRules -> <| 398 | "Author" -> "rhennigan", 399 | "CreationDate" -> "01-24-2022 13:52:09" 400 | |>, 401 | CellContext -> "Global`", 402 | FrontEndVersion -> "13.0 for Microsoft Windows (64-bit) (December 2, 2021)", 403 | StyleDefinitions -> 404 | FrontEnd`FileName[ 405 | {"Wolfram"}, 406 | "FunctionPageStylesExt.nb", 407 | CharacterEncoding -> "UTF-8" 408 | ], 409 | ExpressionUUID -> "4b104d8b-f8c9-4c1a-9846-1faa068fec2e" 410 | ] --------------------------------------------------------------------------------