I thought to clear the cache when viewing the pages in the browser but didn't realize Zoom Search had it's own cache. Clearing the cache seems to have fixed the problem - all the codes are now searchable (as far as I can tell). Thanks for the help and also thanks for the tips on better understanding HTML whitespace.
Andrew
Announcement
Collapse
No announcement yet.
Some codes not showing up in search
Collapse
X
-
Actually, I suspect you're still indexing cached pages. Click on "Configure" and check the option to "Reload all files (do not use cache)" and try re-indexing again.
I just tried indexing the page here and it indexed "Continuous" and "305.61" as two separate words.
Originally posted by aschecht View PostFor my website, I tried inserting a space in the HTML before the span tag. This didn't make the unindexed codes indexed. I didn't expect this to work since my understanding is that HTML ignores whitespace.
That is, while the HTML:
Code:<p>cat dog<p>
Code:<p>cat dog</p>
And likewise,
Code:Continuous<span class="code">305.61</span>
Code:Continuous <span class="code">305.61</span>
Code:cat<b>dog</b>
Hope that makes it more clear.
Leave a comment:
-
Very interesting. This is the first I've heard of the difference between a normal space and a non-breaking space. I've been seeing (and occasionally using) the code for years without realizing it stood for non-breaking space. So I did some Google searching to try to understand this concept and found "HTML entity " for a normal space. But I haven't come across this code before. Not sure if it would make sense to use this in place of
For my website, I tried inserting a space in the HTML before the span tag. This didn't make the unindexed codes indexed. I didn't expect this to work since my understanding is that HTML ignores whitespace.
Next I tried to insert a before each span tag. This seems to have partially fixed my problem. After reindexing, Zoom Search now finds V65.46, & V25.04. I still doesn't find 305.1. In fact it seems not to find any of the codes in the 305 series. You can locate the pages with them by searching for *305* but they don't show up if I just search for 305.1 or 305.62 for instance.
I've tried to insert a whitespace either before or after the
<li>Continuous <span class="code">305.61</span></li>
and
<li>Continuous <span class="code">305.61</span></li>
but this doesn't seem to allow these codes to be indexed either.
I tried to substitute the for but this didn't make code 305.61 indexed either.
What can I try next to fix this?
Andrew
Leave a comment:
-
I think it would be better to include a normal space character, rather than a non breaking space character. But the idea is correct.
Leave a comment:
-
Thanks Raymond. That explains it.
If I'm understanding this I should be able to fix this by doing a search and replace throughout my content to add an before each span tag and then reindexing it. I'll try this and reply with the results.
Andrew
Leave a comment:
-
The problem is in your markup. You have used span tags in the markup and there is no space between the word "pregnancy" and "V25.04" as seen in the code extract below:
Code:<li><a name="Counseling_and_instruction_in_natural_family_planning"> Counseling and instruction in natural family planning</a> to avoid pregnancy<span class="code">V25.04</span></li>
It does not appear like this in your browser because your CSS is causing it to space the words apart. But if you open the page without the CSS file, or turn off stylesheets in your browser, you will see the text as follows:
Counseling and instruction in natural family planning to avoid pregnancyV25.04
The same thing is happening for the other codes that are failing to match. The ones that are returning have a space or newline before the span tag.
Hope that helps and let us know if you have further questions.
Leave a comment:
-
Some codes not showing up in search
In my site www.icdmeister.com/site/ one feature is to search for diagnosis codes to find their descriptions. Examples of codes include V70.0, 311, 599.0, 706.1, V25.03, etc. I've configured ZoomSearch with the indexing word rule to allow dots to join words. The max unique words to index limit (I've set it to 300000) has not been exceeded.
All of the codes listed above seem to have been indexed and are listed appropriately when searched for. Other codes (V65.46, 305.1, V25.04) are not found by Zoom Search.
Interestingly, V25.03 and V25.04 are on the same page. The first code is searchable, the second is not. The source code for the content seems indistinguishable to my eye:<li><a name="Initiation_of_other_contraceptive_measures"> Initiation of other contraceptive measures</a>Any suggestions to fix this?
<span class="code">V25.02</span><ul>
<li>including fitting of diaphragm, prescription of foams, creams, or other agents</li>
</ul></li>
<li>
<a name="Encounter_for_emergency_contraceptive_counse ling_and_prescription">Encounter for emergency contraceptive counseling and prescription</a>
<span class="code">V25.03</span></li>
<li><a name="Counseling_and_instruction_in_natural_family _planning">
Counseling and instruction in natural family planning</a> to avoid
pregnancy<span class="code">V25.04</span></li>
<li> <a name="advice">Other general counseling</a> and advice <span class="code">V25.09</span><ul>
<li>including family planning advice</li>
</ul>
Thanks,
AndrewTags: None
Leave a comment: